BulletChartConfig constructor

BulletChartConfig({
  1. required List<BulletItem> items,
  2. ChartTheme theme = ChartTheme.light,
  3. double barHeightFraction = 0.35,
  4. bool showLabels = true,
  5. bool showValues = true,
  6. TitlesData? title,
  7. ChartTooltip? tooltip,
  8. ChartLegend? legend,
  9. ChartToolbox? toolbox,
  10. GridData? grid,
})

Implementation

BulletChartConfig({
  required this.items,
  this.theme = ChartTheme.light,
  this.barHeightFraction = 0.35,
  this.showLabels = true,
  this.showValues = true,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.bullet, series: const []);