HighchartsWaterfallSeriesDataOptions constructor

HighchartsWaterfallSeriesDataOptions({
  1. HighchartsWaterfallSeriesDataAccessibilityOptions? accessibility,
  2. String? className,
  3. String? color,
  4. double? colorIndex,
  5. Map<String, dynamic>? custom,
  6. List<HighchartsWaterfallSeriesDataDataLabelsOptions>? dataLabels,
  7. String? description,
  8. HighchartsWaterfallSeriesDataDragDropOptions? dragDrop,
  9. String? drilldown,
  10. HighchartsWaterfallSeriesDataEventsOptions? events,
  11. String? id,
  12. bool? isIntermediateSum,
  13. bool? isSum,
  14. double? labelrank,
  15. String? name,
  16. bool? selected,
  17. dynamic x,
  18. double? y,
})

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

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

Implementation

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