jqplot使用日期轴渲染器显示标签

时间:2011-06-01 08:49:20

标签: jquery jquery-plugins graph charts jqplot

我正在使用jqplot 1.0.0b1_r746。我想使用日期轴渲染器显示一些时间段。该图表如下所示:

chart 现在我想将开始和结束日期显示为一个时期的标签。我试图使用pointLables插件,但没有成功。

1 个答案:

答案 0 :(得分:1)

使用点标签标签是正确的approch。标签是每个点的最后一个元素,例如

var line1=[['2008-06-30',1,'line1'], ['2008-7-30',1,'line1']];

然后你必须使用点标签配置,例如

pointLabels: {
    show: true
 }
},

请参阅文档以获取更多信息:http://www.jqplot.com/docs/files/plugins/jqplot-pointLabels-js.html