BoxPlotChartConfig constructor

BoxPlotChartConfig({
  1. required List<String> categories,
  2. required List<List<BoxSummary>> boxData,
  3. ChartTheme theme = ChartTheme.light,
  4. bool showMean = true,
  5. bool showNotch = false,
  6. double boxWidthFraction = 0.5,
  7. TitlesData? title,
  8. ChartTooltip? tooltip,
  9. ChartLegend? legend,
  10. ChartToolbox? toolbox,
  11. GridData? grid,
})

Implementation

BoxPlotChartConfig({
  required this.categories,
  required this.boxData,
  this.theme = ChartTheme.light,
  this.showMean = true,
  this.showNotch = false,
  this.boxWidthFraction = 0.5,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.boxPlot, series: const []);