LargeScaleAreaConfig constructor
LargeScaleAreaConfig({
- required List<
double> xData, - required List<
double> yData, - int targetPoints = 500,
- String? seriesName,
- String? seriesColor,
- double fillOpacity = 0.25,
- ChartTheme theme = ChartTheme.light,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- GridData? grid,
Implementation
LargeScaleAreaConfig({
required this.xData,
required this.yData,
this.targetPoints = 500,
this.seriesName,
this.seriesColor,
this.fillOpacity = 0.25,
this.theme = ChartTheme.light,
super.title,
super.tooltip,
super.legend,
super.toolbox,
super.grid,
}) : super(type: ChartType.largeScaleArea, series: const []);