BarLabelRotationConfig constructor

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

Implementation

BarLabelRotationConfig({
  required this.categories,
  required super.series,
  this.theme = ChartTheme.light,
  this.labelRotation = 45.0,
  this.barWidthRatio = 0.55,
  this.showValues = false,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.barLabelRotation);