Reputation: 1288
How to set scrollbar position to Left in highcharts/highstock ?
As shown in image when the chart loads,
The scrollbar is automatically aligned to right.
Is there a way to position it to Left ?
Upvotes: 3
Views: 6424
Reputation: 37588
You can use setExtremes http://api.highcharts.com/highstock#Axis.setExtremes() and define range for scrollbar.
Upvotes: 2
Reputation: 1288
We can do this thing using setting min to 0
xAxis: {
min: 0, //setting min to 0
max: 5
},
here is Jsfiddle link .
Upvotes: 5