标签: javascript jquery javascript-events highcharts
http://jsfiddle.net/39UXK/4/
在这个示例中,当我将鼠标悬停在受尊重的按钮上时,我希望看到饼图的工具提示。
有人可以帮我吗? 干杯
答案 0 :(得分:3)
您需要找到有问题的点,选择它,然后刷新工具提示:
// find the point var point = chart.series[0].points[i]; // select the point point.select(); // refresh the tooltip chart.tooltip.refresh(point);