RainfallChartConfig constructor
RainfallChartConfig({
- required List<
String> categories, - required List<
Series> series, - ChartTheme? theme = ChartTheme.light,
- double barWidthRatio = 0.45,
- bool showLine = true,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- 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);