BarBackgroundChartConfig constructor

BarBackgroundChartConfig({
  1. required List<String> categories,
  2. required List<Series> series,
  3. ChartTheme theme = ChartTheme.light,
  4. double trackOpacity = 0.12,
  5. double barWidthRatio = 0.55,
  6. bool showValues = true,
  7. TitlesData? title,
  8. ChartTooltip? tooltip,
  9. ChartLegend? legend,
  10. ChartToolbox? toolbox,
  11. GridData? grid,
})

Implementation

BarBackgroundChartConfig({
  required this.categories,
  required super.series,
  this.theme = ChartTheme.light,
  this.trackOpacity = 0.12,
  this.barWidthRatio = 0.55,
  this.showValues = true,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.barBackground);