oveload_lalit
oveload_lalit

Reputation: 85

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?

Upvotes: 1

Views: 1440

Answers (1)

Gabriel Florit
Gabriel Florit

Reputation: 2918

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);

Upvotes: 3

Related Questions