IntradayLineConfig constructor
IntradayLineConfig({
- required List<
IntradayPoint> points, - String xLabel = 'Time',
- String yLabel = 'Price',
- ChartTheme theme = ChartTheme.light,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- GridData? grid,
Implementation
IntradayLineConfig({
required this.points,
this.xLabel = 'Time',
this.yLabel = 'Price',
this.theme = ChartTheme.light,
super.title,
super.tooltip,
super.legend,
super.toolbox,
super.grid,
}) : super(type: ChartType.intradayLine, series: const []);