HighchartsLineSeriesDataOptions constructor

HighchartsLineSeriesDataOptions({
  1. HighchartsLineSeriesDataAccessibilityOptions? accessibility,
  2. String? className,
  3. String? color,
  4. double? colorIndex,
  5. Map<String, dynamic>? custom,
  6. List<HighchartsLineSeriesDataDataLabelsOptions>? dataLabels,
  7. String? description,
  8. HighchartsLineSeriesDataDragDropOptions? dragDrop,
  9. String? drilldown,
  10. HighchartsLineSeriesDataEventsOptions? events,
  11. String? id,
  12. double? labelrank,
  13. HighchartsLineSeriesDataMarkerOptions? marker,
  14. String? name,
  15. bool? selected,
  16. dynamic x,
  17. double? y,
})

An array of data points for the series. For the line series type, points can be given in the following ways:

API Docs: https://api.highcharts.com/highcharts/series.line.data

Implementation

HighchartsLineSeriesDataOptions(
    {this.accessibility,
    this.className,
    this.color,
    this.colorIndex,
    this.custom,
    this.dataLabels,
    this.description,
    this.dragDrop,
    this.drilldown,
    this.events,
    this.id,
    this.labelrank,
    this.marker,
    this.name,
    this.selected,
    this.x,
    this.y});