RainfallChartConfig constructor

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

Implementation

RainfallChartConfig({
  required this.categories,
  required super.series,
  super.theme = ChartTheme.light,
  this.barWidthRatio = 0.45,
  this.showLine = true,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.rainfall);