gpt4 book ai didi

highcharts - 强制 yAxis.max 在 Highcharts 中不受尊重

转载 作者:行者123 更新时间:2023-12-02 08:20:28 25 4
gpt4 key购买 nike

...或者我的错是什么?

我正在尝试在两个轴上设置 yAxis.max 值。但它不起作用。

左边的 yAxis 应该在 330-410 之间,tickInterval 为 10,右边的 yAxis 应该在 -0.6-1,1 之间,tickInterval 为 0.1。

enter image description here

Here is a fiddle .

   yAxis: [{
labels: {
style: {
color: "#4553c5"
}
},
title: {
text: "ppm",
align: "high",
rotation: 0,
x: 10,
y: -30,
textAlign: 'left',
style: {
color: "#4553c5"
}
},
min: 330,
max: 410,
tickInterval: 10,
gridLineWidth: 1,
gridLineColor: '#efefef',
endOnTick: false
}, {
labels: {
style: {
color: "#ec5d61"
}
},
title: {
text: "°C Anomaly",
align: "high",
rotation: 0,
textAlign: "right",
x: -10,
y: -30,
style: {
color: "#ec5d61"
}
},
min: -0.6,
max: 1.1,
tickInterval: 0.2,
gridLineWidth: 1,
gridLineColor: '#efefef',
opposite: true,
endOnTick: false
}],

它有什么问题?感谢您的任何提示!

最佳答案

使用双 Axis 时,默认的 alignTicks 设置会混淆最小值和最大值。

alignTicks 设置为 false 通常可以解决问题

    chart: { 
alignTicks: false
},

例子:

OTOH,使用像这样的双 y Axis 图表通常不是一个好主意,因为它混淆了两个交互没有任何意义的系列,因为它们是在两个不同的尺度上测量的。

关于这个主题的有用读物:

关于highcharts - 强制 yAxis.max 在 Highcharts 中不受尊重,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37675822/

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