LineClickAddConfig constructor

LineClickAddConfig({
  1. List<double> initialX = const [],
  2. List<double> initialY = const [],
  3. String? seriesName,
  4. void onPointAdded(
    1. double x,
    2. double y
    )?,
  5. ChartTheme theme = ChartTheme.light,
  6. TitlesData? title,
  7. ChartTooltip? tooltip,
  8. ChartLegend? legend,
  9. ChartToolbox? toolbox,
  10. GridData? grid,
})

Implementation

LineClickAddConfig({
  this.initialX = const [],
  this.initialY = const [],
  this.seriesName,
  this.onPointAdded,
  this.theme = ChartTheme.light,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.lineClickAdd, series: const []);