Skip to content

Navigator Series (Highstock)

Will Hawker edited this page Jul 21, 2017 · 1 revision

React JSX Highcharts provides a helper component for rendering a series in the navigator - <Navigator.Series />

Note Requires a seriesId prop, which refers to the Series id

Example

<YAxis id="price">
  <YAxis.Title>Price</YAxis.Title>
  <AreaSplineSeries id="profit" name="Profit" data={data} />
</YAxis>

<Navigator>
  <Navigator.Series seriesId="profit" />
</Navigator>