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.
在 Highcharts 中,我如何访问类别标签上的点击事件?
我想为每个标签添加一个工具提示,但很难找到一种方法
非常感谢
相关问题在这里。但是你会使用formatter. API 在这里也有一个可用的示例。
formatter
您可以迭代每个 SVG 标签元素并通过“on”功能添加点击事件。
$.each(chart.xAxis[0].ticks,function(i,tick){ tick.label.on('click',function(){ alert(tick.pos); }); });
http://jsfiddle.net/aPg8H/