HighchartsBarSeriesDataOptions constructor

HighchartsBarSeriesDataOptions({
  1. HighchartsBarSeriesDataAccessibilityOptions? 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<HighchartsBarSeriesDataDataLabelsOptions>? dataLabels,
  10. String? description,
  11. HighchartsBarSeriesDataDragDropOptions? dragDrop,
  12. String? drilldown,
  13. HighchartsBarSeriesDataEventsOptions? 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 bar series type, points can be given in the following ways:

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

Implementation

HighchartsBarSeriesDataOptions(
    {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});