AreaTimeAxisConfig constructor

AreaTimeAxisConfig({
  1. required List<TimePoint> points,
  2. String? seriesName,
  3. String? seriesColor,
  4. double fillOpacity = 0.3,
  5. bool showLine = true,
  6. ChartTheme theme = ChartTheme.light,
  7. TitlesData? title,
  8. ChartTooltip? tooltip,
  9. ChartLegend? legend,
  10. ChartToolbox? toolbox,
  11. 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 []);