LargeScaleAreaConfig constructor

LargeScaleAreaConfig({
  1. required List<double> xData,
  2. required List<double> yData,
  3. int targetPoints = 500,
  4. String? seriesName,
  5. String? seriesColor,
  6. double fillOpacity = 0.25,
  7. ChartTheme theme = ChartTheme.light,
  8. TitlesData? title,
  9. ChartTooltip? tooltip,
  10. ChartLegend? legend,
  11. ChartToolbox? toolbox,
  12. 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 []);