Reputation: 7134
I want to fix the navigator handles position at last. The navigator handles are full expanded when I reload the page.
I want to fix the navigator handles position like this.
In this below image , I manually adjusted the handles position at last. I want to fix the position by default.
Upvotes: 2
Views: 3523
Reputation: 15755
use xAxis.range :
$('#container').highcharts('StockChart', {
xAxis: {
range: 6 * 30 * 24 * 3600 * 1000 // six months
},
....
}
demo fidder
Upvotes: 0
Reputation: 1380
You need to set the xAxis range in ms: http://api.highcharts.com/highstock#xAxis.range
Upvotes: 2
Reputation: 37578
You can use setExtremes function http://api.highcharts.com/highstock#Axis.setExtremes()
Upvotes: 1