Reputation: 4489
I want to enable/disable Navigator pane
of highchart by some Javascript/Jquery
code but not find any suitable code or clue to do that.
Please help me.
I have created jsfiddle
for some sample to achieve that
-Neeraj
Upvotes: 1
Views: 501
Reputation:
You just need to change the click function to this:
$('#Navigator').click(function () {
chart.update({
navigator: {
enabled: false
}
});
});
The navigator enabled setting needs adding within the update.
Upvotes: 2