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. HighchartsBoxPlotSeriesDataDragDropOptions? dragDrop,
  9. String? drilldown,
  10. HighchartsBoxPlotSeriesDataEventsOptions? events,
  11. double? high,
  12. String? id,
  13. double? labelrank,
  14. double? low,
  15. double? median,
  16. String? medianDashStyle,
  17. String? name,
  18. double? q1,
  19. double? q3,
  20. bool? selected,
  21. String? stemDashStyle,
  22. String? whiskerDashStyle,
  23. dynamic x,
  24. 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.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});