在按钮上方悬停在图表外时显示饼图的工具提示

时间:2012-07-26 14:14:23

标签: javascript jquery javascript-events highcharts

http://jsfiddle.net/39UXK/4/

在这个示例中,当我将鼠标悬停在受尊重的按钮上时,我希望看到饼图的工具提示。

有人可以帮我吗? 干杯

1 个答案:

答案 0 :(得分:3)

您需要找到有问题的点,选择它,然后刷新工具提示:

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

// select the point
point.select();

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