gpt4 book ai didi

javascript - 在 yAxis Highcharts 上显示 PlotLine 值

转载 作者:行者123 更新时间:2023-11-30 21:14:45 27 4
gpt4 key购买 nike

我正在使用 Highchart 的 Char Bar,我想知道是否有办法显示平均线(绘图线)的值,在“yAxis”或鼠标悬停显示中显示值一个对话框,其中包含 Plot Line 的确切值。

我已经显示了平均线,但我无法在图表上读取EXACT 值。

这是 Highchart 中的 PlotLines

plotLines: [{
color: 'red',
value: avg, // Insert your average here
width: '1',
zIndex: 2 // To not get stuck below the regular plot lines
}]

enter image description here

最佳答案

您应该能够显示标签:

plotLines: [{
color: 'red',
value: avg, // Insert your average here
width: '1',
zIndex: 2, // To not get stuck below the regular plot lines
label: {
text: avg,
textAlign: 'left',
x: -40
}
}]

Reference

关于javascript - 在 yAxis Highcharts 上显示 PlotLine 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45801305/

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