NegativeBarConfig constructor

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

Implementation

NegativeBarConfig({
  required this.categories,
  required super.series,
  this.theme = ChartTheme.light,
  this.showValues = true,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.negativeBar);