gpt4 book ai didi

javascript - 使用两个不同的 yAxis 比例 Highcharts 定义 yAxis 值

转载 作者:行者123 更新时间:2023-12-02 16:15:55 27 4
gpt4 key购买 nike

您好,我有一个 Highcharts 图表,它是一个具有两个不同 y 轴的折线图。左边一张图形%,右边一分钟。我想将左侧“硬编码”为“0%、20%、40%、60%、80%、100%”

这是我的代码

   var chartTot = {
chart: {
renderTo: 'grafTot',
type: 'line',
marginBottom: 110,

},
legend: {
itemDistance: 20,
itemWidth: 190
},

title: {
text: ''
},
plotOptions: {
series: {
marker: {
enabled: false
}
}
},
xAxis: {
categories: $scope.hours
},
yAxis: [{ //1st yAxis
title: {
text: 'Clients %'
},
min: 0, // I want my graphic 0 to 100 but with this i get
max: 100, // 0- 120 because of the second axis
labels: {
format: '{value} %',
},
},



{ //2nd yAxis
title: {
text: 'Minutes'
},
min: 0,
max: 60,
labels: {
format: '{value} min',
style: {
color: Highcharts.getOptions().colors[6]
}
},
opposite: true

}
]
};

如何定义第一个 yAxis 比例并保留第二个动态?

非常感谢

最佳答案

您应该设置alignTicks为假

关于javascript - 使用两个不同的 yAxis 比例 Highcharts 定义 yAxis 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29612707/

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