score:5

Accepted answer

Just enable sharing for tooltip. And refresh both series's tooltip by giving the points of array that you want to show on the tooltip.

tooltip : {
          valueDecimals : 2,
          shared: true
}

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

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

And seems like showing two different tooltips without sharing is not possible through only api itself.

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


Related Query

More Query from same tag