FunctionPlotConfig constructor

FunctionPlotConfig({
  1. required List<FunctionSeries> functions,
  2. double xMin = -10,
  3. double xMax = 10,
  4. double yMin = -10,
  5. double yMax = 10,
  6. int resolution = 400,
  7. ChartTheme theme = ChartTheme.light,
  8. TitlesData? title,
  9. ChartTooltip? tooltip,
  10. ChartLegend? legend,
  11. ChartToolbox? toolbox,
  12. GridData? grid,
})

Implementation

FunctionPlotConfig({
  required this.functions,
  this.xMin = -10,
  this.xMax = 10,
  this.yMin = -10,
  this.yMax = 10,
  this.resolution = 400,
  this.theme = ChartTheme.light,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.functionPlot, series: const []);