Nagesh Salunke
Nagesh Salunke

Reputation: 1288

Highchart Scrollbar position

How to set scrollbar position to Left in highcharts/highstock ? enter image description here

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

Answers (2)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

You can use setExtremes http://api.highcharts.com/highstock#Axis.setExtremes() and define range for scrollbar.

Upvotes: 2

Nagesh Salunke
Nagesh Salunke

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

Related Questions