HighchartsNavigatorSeriesOptions constructor

HighchartsNavigatorSeriesOptions({
  1. String? className,
  2. String? color,
  3. List? data,
  4. HighchartsNavigatorSeriesDataGroupingOptions? dataGrouping,
  5. HighchartsNavigatorSeriesDataLabelsOptions? dataLabels,
  6. double? fillOpacity,
  7. String? id,
  8. String? lineColor,
  9. double? lineWidth,
  10. HighchartsNavigatorSeriesMarkerOptions? marker,
  11. HighchartsNavigatorSeriesPointRangeOptions? pointRange,
  12. double? threshold,
  13. String? type,
})

Options for the navigator series. Available options are the same as any series, documented at plotOptions and series.

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

Implementation

HighchartsNavigatorSeriesOptions(
    {this.className,
    this.color,
    this.data,
    this.dataGrouping,
    this.dataLabels,
    this.fillOpacity,
    this.id,
    this.lineColor,
    this.lineWidth,
    this.marker,
    this.pointRange,
    this.threshold,
    this.type});