我需要更改 yAxis 上的第一个刻度标签。我更改了 yAxis 上的最小值:
yAxis: [{
title : {
text : 'Position'
},
gridLineWidth: 1,
startOnTick: false,
min: 1, //changed min value
reversed: true,
}]
但该值未显示在前面的 yAxis 中。如何签署 yAxis 中的第一个值?
这是我的图表。
如果我写:
yAxis: [{
title : {
text : 'Позиция'
},
startOnTick: false,
showFirstLabel: true,
min: 1,
reversed: true,
tickInterval: 1,
labels: {
formatter: function() {
if (this.value < 1)
return null;
else if (this.value == 1)
return this.value;
else if (this.value % 2 == 0)
return this.value;
}
}
}] 然后缩放 yAxis 对我的数据不利:(图表