AreaChartConfig constructor
AreaChartConfig({
- required List<
Series> series, - XYAxis? xAxis,
- XYAxis? yAxis,
- double? maxY,
- double curveSmoothness = 0.2,
- bool showDots = true,
- double dotSize = 4.0,
- String areaColor = 'red',
- double areaOpacity = 0.2,
- bool gradientArea = true,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- GridData? grid,
- ChartTheme? theme,
- ChartController? controller,
- ChartAxisConfig? xAxisConfig,
- ChartAxisConfig? yAxisConfig,
Implementation
AreaChartConfig({
required super.series,
super.xAxis,
super.yAxis,
super.maxY,
super.curveSmoothness,
super.showDots,
super.dotSize,
this.areaColor = 'red',
this.areaOpacity = 0.2,
this.gradientArea = true,
super.title,
super.tooltip,
super.legend,
super.toolbox,
super.grid,
super.theme,
super.controller,
super.xAxisConfig,
super.yAxisConfig,
}) : super(showBelowArea: true);