Reputation:
How to remove this hightlighted area in highcharts? please share your answers. thanks
Upvotes: 3
Views: 1799
Reputation: 14442
This is done by disabling the navigator. See enabled. Simple example:
navigator
enabled
$(function () { $('#container').highcharts('StockChart', { navigator: { enabled: false }, rangeSelector: { selected: 1 }, series: [{ name: 'USD to EUR', data: usdeur }] }); });
Upvotes: 8