我试图在 yAxis 上显示更多标签,但我无法让它工作。我的 yAxis 属性如下:
yAxis : {
title : {
text : '%CPU Utilization'
},
labels: {
enabled: true,
step: 5,
zIndex: 10
},
showLastLabel: true,
min:0,
max: 100,
plotLines : [{
value : 70,
color : '#FF3300',
dashStyle : 'shortdash',
width : 2,
label : {
text : 'Threshold',
align: 'right',
style: {
fontWeight: 'bold'
}
}
}]
},
我遵循了文档,但似乎没有工作。我需要一个 0、10、20、30、40 的标签(以 10 为增量)。知道这在highcharts中是否可行吗?