HighchartsTimelineSeriesDataOptions constructor

HighchartsTimelineSeriesDataOptions({
  1. HighchartsTimelineSeriesDataAccessibilityOptions? accessibility,
  2. String? className,
  3. String? color,
  4. double? colorIndex,
  5. Map<String, dynamic>? custom,
  6. List<HighchartsTimelineSeriesDataDataLabelsOptions>? dataLabels,
  7. String? description,
  8. HighchartsTimelineSeriesDataDragDropOptions? dragDrop,
  9. String? drilldown,
  10. HighchartsTimelineSeriesDataEventsOptions? events,
  11. String? id,
  12. String? label,
  13. double? labelrank,
  14. String? name,
  15. bool? selected,
  16. dynamic x,
})

An array of data points for the series. For the timeline series type, points can be given with three general parameters, name, label, and description:

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

Implementation

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