gpt4 book ai didi

javascript - Highstock 共享工具提示此索引

转载 作者:行者123 更新时间:2023-12-03 05:53:34 26 4
gpt4 key购买 nike

我必须使用共享格式的工具提示,如何获取我悬停的点的索引?我已经尝试过其他建议的堆栈溢出解决方案,但没有任何效果。

tooltip: {useHTML: true, shared: true, formatter: function (tooltip) {

// where the hell is it!

var nodes = this.points;}}

最佳答案

在具有共享工具提示的格式化程序回调中,您将无法区分哪个点已悬停,因此您无法直接获取该点的索引。但是,查找的点存储为 Chart.hoverPoint。

formatter: function(tooltip) {

// where the hell is it!
var nodes = this.points,
current = nodes[0].series.chart.hoverPoint;
console.log(current, current.series.name);
return current.series.name;
}

示例:http://jsfiddle.net/g7gkuf4s/3/

关于javascript - Highstock 共享工具提示此索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40039320/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com