1

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

在此示例中,当我将鼠标悬停在相关按钮上时,我想查看饼图的工具提示。

任何人都可以在这里帮助我吗?

4

1 回答 1

3

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

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

// select the point
point.select();

// refresh the tooltip
chart.tooltip.refresh(point);
于 2012-08-23T05:53:01.297 回答