Skip to content Skip to sidebar Skip to footer

Show Tooltips Of Piechart When Hover Outside Of The Chart On A Button

http://jsfiddle.net/39UXK/4/ in this example I want to see the tooltips of the piechart when I hover on the respected buttons. Can anyone please help me here?

Solution 1:

You need to find the point in question, select it, and refresh the tooltip:

// find the point
var point = chart.series[0].points[i];

// select the point
point.select();

// refresh the tooltip
chart.tooltip.refresh(point);

Post a Comment for "Show Tooltips Of Piechart When Hover Outside Of The Chart On A Button"