Reputation: 51
I have a highstock chart with it's navigator. I want to restrict the navigator range and not letting the user to get the range smaller than a year. I have a years scale.
How can I do that?
Upvotes: 1
Views: 838
Reputation: 51
Finally I set the property tickInterval to one year in milliseconds - 1000*3600*24*356.
Upvotes: 2
Reputation: 7886
You could set minRange
in xAxis
to one year in milliseconds - 1000*3600*24*356
.
Upvotes: 0