AreaTimeAxisConfig constructor
AreaTimeAxisConfig({
- required List<
TimePoint> points, - String? seriesName,
- String? seriesColor,
- double fillOpacity = 0.3,
- bool showLine = true,
- ChartTheme theme = ChartTheme.light,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- GridData? grid,
Implementation
AreaTimeAxisConfig({
required this.points,
this.seriesName,
this.seriesColor,
this.fillOpacity = 0.3,
this.showLine = true,
this.theme = ChartTheme.light,
super.title,
super.tooltip,
super.legend,
super.toolbox,
super.grid,
}) : super(type: ChartType.areaTimeAxis, series: const []);