FunctionPlotConfig constructor
FunctionPlotConfig({
- required List<
FunctionSeries> functions, - double xMin = -10,
- double xMax = 10,
- double yMin = -10,
- double yMax = 10,
- int resolution = 400,
- ChartTheme theme = ChartTheme.light,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- 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 []);