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.
我想使用这样的功能,我可以根据鼠标指针在柱形图中的位置或移动来移动工具提示,而不是在折线图中。
在 jQuery 中我们有mousemove函数,但在 Highchart 中没有这样的函数。
mousemove
知道怎么做吗?
您可以将工具提示内容移动到您想要的任何 div
tooltip:{ formatter : function() { $("#date").html( Highcharts.dateFormat('%m/ %e/ %Y', this.x)); $("#data").html(this.y) ; return false ; } },
然后您可以使用 jquery 将任何事件应用于这些选择器