HighchartsBoxPlotSeriesDataOptions constructor

HighchartsBoxPlotSeriesDataOptions({
  1. HighchartsBoxPlotSeriesDataAccessibilityOptions? accessibility,
  2. String? boxDashStyle,
  3. String? className,
  4. String? color,
  5. double? colorIndex,
  6. Map<String, dynamic>? custom,
  7. List<HighchartsBoxPlotSeriesDataDataLabelsOptions>? dataLabels,
  8. String? description,
  9. HighchartsBoxPlotSeriesDataDragDropOptions? dragDrop,
  10. String? drilldown,
  11. HighchartsBoxPlotSeriesDataEventsOptions? events,
  12. double? high,
  13. String? id,
  14. double? labelrank,
  15. double? low,
  16. double? median,
  17. String? medianDashStyle,
  18. String? name,
  19. double? q1,
  20. double? q3,
  21. bool? selected,
  22. String? stemDashStyle,
  23. String? whiskerDashStyle,
  24. dynamic x,
  25. double? y,
})

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

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

Implementation

HighchartsBoxPlotSeriesDataOptions(
    {this.accessibility,
    this.boxDashStyle,
    this.className,
    this.color,
    this.colorIndex,
    this.custom,
    this.dataLabels,
    this.description,
    this.dragDrop,
    this.drilldown,
    this.events,
    this.high,
    this.id,
    this.labelrank,
    this.low,
    this.median,
    this.medianDashStyle,
    this.name,
    this.q1,
    this.q3,
    this.selected,
    this.stemDashStyle,
    this.whiskerDashStyle,
    this.x,
    this.y});