在StockChart中以编程方式显示多个系列的工具提示(高图)

时间:2013-02-04 12:22:13

标签: ruby tooltip highcharts highstock

我正在制作一个股票图表,我想以编程方式将高品质工具提示显示为asked here

我设法解决了这个问题,但现在,我的目标是显示所有系列的工具提示(当我用鼠标选择一个点时的行为相同 - 请检查this example

这可能吗?

这里是密钥代码(more code):

xchart.tooltip.refresh([xchart.series[0].points[i]]);
//DOESN'T WORK
//chart.tooltip.refresh([chart.series.points[i]]);
//DOESN'T WORK ALSO
//chart.tooltip.refresh([chart.series[0].points[i]]);
//chart.tooltip.refresh([chart.series[1].points[i]]);

1 个答案:

答案 0 :(得分:5)

只需为工具提示启用共享。并通过提供要在工具提示中显示的数组点来刷新系列的工具提示。

tooltip : {
          valueDecimals : 2,
          shared: true
}

xchart.tooltip.refresh([xchart.series[0].points[i], xchart.series[1].points[i]]);
  

http://jsfiddle.net/cf7wq/5/

似乎只显示两个不同的工具提示而不共享只能通过api本身。

  

http://highslide.com/forum/viewtopic.php?f=9&t=12670