0

我正在使用 jquery jqplot(条形图)和 ruby​​ on rails 应用程序。我发送日期为 2012 年 4 月,并以美元为单位发送图表。鼠标悬停工具提示将日期显示为索引,即 [1, $200], [2,$300] 而不是日期(2013 年 4 月)。我怎样才能用日期替换这个索引?其中日期在 x 轴上,金额在 y 轴上。这是我的荧光笔代码:

highlighter:
  show: true
  showMarker: false
  formatString: '<table class="jqplot-highlighter">
                 <tr><td><b>%s</b></td><td><b>%s</b></td>
                 </tr></table>'
4

1 回答 1

0

你添加了这个JS吗?

<script type="text/javascript" language="javascript" src="plugins/jqplot.dateAxisRenderer.js"></script>

试试这个:

highlighter: {
    tooltipAxes: 'y',
    yvalues: 2,
    formatString: '<table class="jqplot-highlighter">
                     <tr><td><b>%b</b></td><td><b>,%Y</b></td>
                     </tr></table>'
}

更多细节。

于 2013-05-03T07:26:30.837 回答