IntradayLineConfig constructor

IntradayLineConfig({
  1. required List<IntradayPoint> points,
  2. String xLabel = 'Time',
  3. String yLabel = 'Price',
  4. ChartTheme theme = ChartTheme.light,
  5. TitlesData? title,
  6. ChartTooltip? tooltip,
  7. ChartLegend? legend,
  8. ChartToolbox? toolbox,
  9. 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 []);