gpt4 book ai didi

javascript - 使 StockCharts 中的工具提示与 HighCharts 中的行为相同

转载 作者:行者123 更新时间:2023-11-30 18:04:21 26 4
gpt4 key购买 nike

如何让 StockChart 工具提示的行为与 HighCharts 中的相同?

如果您查看 fiddle ,在股票图表中,光标移动到鼠标位置,就像在“图表”实例中一样,工具提示会捕捉到最近的点。

这是 fiddle :

http://jsfiddle.net/gn393/

$(function () {
var chart = new Highcharts.StockChart({
chart: {
renderTo: 'container1'
},

tooltip: {
positioner: function (w,h,p) {
return { x: p.plotX + chart.plotLeft, y: p.plotY + chart.plotTop };
}
},

series: [{type:"area",
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4]
}]
});
});

$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container2'
},

tooltip: {
positioner: function (w,h,p) {
return { x: p.plotX + chart.plotLeft, y: p.plotY + chart.plotTop };
}
},

series: [{type:"area",
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4]
}]
});
});

我需要工具提示捕捉到 StockChart 上最近的点。

最佳答案

这就是共享工具提示在 Highcharts 中的工作方式。您需要禁用它 (shared: false),以获得所需的结果,请查看:http://jsfiddle.net/gn393/1/

关于javascript - 使 StockCharts 中的工具提示与 HighCharts 中的行为相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16188403/

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