score:64

Accepted answer

Set allowDecimals: false, see API.

score:0

Can you please apply the yAxis property as min: 0. which is used to show only the positive area of Y axis.

score:1

Please apply the yAxis property as min: 0 and tickInterval: 1. which is used to show only the positive area of Y axis.

  yAxis: {
        tickInterval: 1,
        min: 0
    }

score:5

You can try using the tickInterval.

Setting tickInterval to a whole number should do the trick you require.

   yAxis: {
            tickInterval: 5
        }

Working Demo


Related Query

More Query from same tag