Navigator
The navigator is a small chart below the main chart area, displaying a view of the entire dataset. Its built-in functionality allows zooming in and out on the dataset as well as panning across it. By default, navigator is connected with the scrollbar, but both of them can be enabled and disabled separately. The default series type for navigator is areaspline
, but that can be easily changed via navigator.series.type
.
Navigator, just like any other chart, apart from the series datasets, contains xAxis
and yAxis
. Therefore all of the Axis options apply to the navigator as well.
navigator: {xAxis: {...},yAxis: {...}}
The navigator is enabled by default for the first series in all Highcharts Stock charts. To configure which series are shown in the navigator, use the series.showInNavigator
option.
series: {showInNavigator: true}
To configure the options for the navigator series, you can set per-series options on series.navigatorOptions
and options for all navigator series on navigator.series
.
Each part of the navigator, like handles, masks, navigator axes, outline, etc. can be individually styled and modified.
navigator: {maskInside: false,maskFill: "rgba(102,133,194,0.3)"}
Inverted charts allow users to display the navigator on the opposite side of the chart.
navigator: {opposite: true}
For more information on navigator options see the API reference.
Navigator also comes as a Standalone navigator component to help with synchronizing multiple charts.