score:2

Accepted answer

You can try to set min and max values for the axis:

xAxis: {
    plotLines: [{
        color: '#000000',
        width: 2,
        value: 1
    }],
    max: 2,
    min: 0
},
yAxis: {
    plotLines: [{
        color: '#000000',
        width: 2,
        value: 1
    }],
     max: 2,
    min: 0
},

Example SQL FIDDLE HERE

score:0

Instaed of plotLines, you can move your axis by offset parameter or use plugin


Related Query