Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
http://jsfiddle.net/39UXK/4/
在此示例中,当我将鼠标悬停在相关按钮上时,我想查看饼图的工具提示。
任何人都可以在这里帮助我吗?
您需要找到有问题的点,选择它,然后刷新工具提示:
// find the point var point = chart.series[0].points[i]; // select the point point.select(); // refresh the tooltip chart.tooltip.refresh(point);