仅在轴上显示整数步长

时间:2012-11-18 22:17:17

标签: javascript highcharts

我有这张图。

IMG

我只在y轴上显示整数步。 因此,我需要[0, 0.5, 1, 1.5, 2, 2.5]而不是[0,1,2]

这可能吗?我不确定在官方API中寻找什么。

1 个答案:

答案 0 :(得分:2)

您正在寻找的答案是allowDecimals布尔值:

yAxis: {
    allowDecimals : false,
    /* completely irrelevant stuff follows... */
    title: {
        text: 'It\'s the y-axis'
    },
    plotLines: [{
        value: 0,
        width: 1,
        color: '#808080'
    }]
},

使用allowDecimals: false

yAxis: {
    allowDecimals : true, // though it defaults to 'true' anyway...
    /* other stuff... */
},

allowDecimals: true相同的图表。

参考文献: