AreaChartConfig constructor

AreaChartConfig({
  1. required List<Series> series,
  2. XYAxis? xAxis,
  3. XYAxis? yAxis,
  4. double? maxY,
  5. double curveSmoothness = 0.2,
  6. bool showDots = true,
  7. double dotSize = 4.0,
  8. String areaColor = 'red',
  9. double areaOpacity = 0.2,
  10. bool gradientArea = true,
  11. TitlesData? title,
  12. ChartTooltip? tooltip,
  13. ChartLegend? legend,
  14. ChartToolbox? toolbox,
  15. GridData? grid,
  16. ChartTheme? theme,
  17. ChartController? controller,
  18. ChartAxisConfig? xAxisConfig,
  19. 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);