HighchartsColumnSeriesDataOptions constructor

HighchartsColumnSeriesDataOptions({
  1. HighchartsColumnSeriesDataAccessibilityOptions? accessibility,
  2. String? borderColor,
  3. double? borderWidth,
  4. String? className,
  5. String? color,
  6. double? colorIndex,
  7. Map<String, dynamic>? custom,
  8. String? dashStyle,
  9. List<HighchartsColumnSeriesDataDataLabelsOptions>? dataLabels,
  10. String? description,
  11. HighchartsColumnSeriesDataDragDropOptions? dragDrop,
  12. String? drilldown,
  13. HighchartsColumnSeriesDataEventsOptions? events,
  14. String? id,
  15. double? labelrank,
  16. String? name,
  17. double? pointWidth,
  18. bool? selected,
  19. dynamic x,
  20. double? y,
})

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

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

Implementation

HighchartsColumnSeriesDataOptions(
    {this.accessibility,
    this.borderColor,
    this.borderWidth,
    this.className,
    this.color,
    this.colorIndex,
    this.custom,
    this.dashStyle,
    this.dataLabels,
    this.description,
    this.dragDrop,
    this.drilldown,
    this.events,
    this.id,
    this.labelrank,
    this.name,
    this.pointWidth,
    this.selected,
    this.x,
    this.y});