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 刻み) のラベルが必要です。これがハイチャートで実行可能かどうか、何か考えはありますか?