HighchartsNavigatorOptions constructor

HighchartsNavigatorOptions({
  1. HighchartsNavigatorAccessibilityOptions? accessibility,
  2. bool? adaptToUpdatedData,
  3. dynamic baseSeries,
  4. bool? enabled,
  5. HighchartsNavigatorHandlesOptions? handles,
  6. double? height,
  7. double? margin,
  8. Map<String, dynamic>? maskFill,
  9. bool? maskInside,
  10. bool? opposite,
  11. String? outlineColor,
  12. double? outlineWidth,
  13. List<HighchartsNavigatorSeriesOptions>? series,
  14. bool? stickToMax,
  15. HighchartsNavigatorXAxisOptions? xAxis,
  16. HighchartsNavigatorYAxisOptions? yAxis,
})

The navigator is a small series below the main series, displaying a view of the entire data set. It provides tools to zoom in and out on parts of the data as well as panning across the dataset.

API Docs: https://api.highcharts.com/highstock/navigator

Implementation

HighchartsNavigatorOptions(
    {this.accessibility,
    this.adaptToUpdatedData,
    this.baseSeries,
    this.enabled,
    this.handles,
    this.height,
    this.margin,
    this.maskFill,
    this.maskInside,
    this.opposite,
    this.outlineColor,
    this.outlineWidth,
    this.series,
    this.stickToMax,
    this.xAxis,
    this.yAxis});