BoxPlotChartConfig constructor
BoxPlotChartConfig({
- required List<
String> categories, - required List<
List< boxData,BoxSummary> > - ChartTheme theme = ChartTheme.light,
- bool showMean = true,
- bool showNotch = false,
- double boxWidthFraction = 0.5,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- 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 []);