在按钮上将图表hover在图表外时显示饼图的工具提示

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

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

有人可以帮我吗? 干杯

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

// find the point var point = chart.series[0].points[i]; // select the point point.select(); // refresh the tooltip chart.tooltip.refresh(point);