我有这张图。
我只在y轴上显示整数步。
因此,我需要[0, 0.5, 1, 1.5, 2, 2.5]
而不是[0,1,2]
。
这可能吗?我不确定在官方API中寻找什么。
答案 0 :(得分:2)
您正在寻找的答案是allowDecimals
布尔值:
yAxis: {
allowDecimals : false,
/* completely irrelevant stuff follows... */
title: {
text: 'It\'s the y-axis'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
yAxis: {
allowDecimals : true, // though it defaults to 'true' anyway...
/* other stuff... */
},
与allowDecimals: true
相同的图表。
参考文献: