score:12

Accepted answer

Thanks everyone for the response. I found the solution. Min max was not actually doing as I wanted it to.

I found the solution.

To start the x axis value from desired value use

plotOptions:
     <your_graph_type>:{
             pointStart: <your_value>
}

score:8

I think setting min and max for xAxis will work. Refer this link

and you can say

startOnTick: false, endOnTick:false

For example refer : example

I have values set min of y to 20 and max to 217,

yAxis: {
        min: 20,
        max:217,
        startOnTick: false,
        endOnTick:false
    },

See how ther chart is displayed. I hope this helps.


Related Query

More Query from same tag