DynamicTimeSeriesConfig constructor

DynamicTimeSeriesConfig({
  1. int windowSize = 60,
  2. Duration updateInterval = const Duration(milliseconds: 500),
  3. double dataGenerator()?,
  4. ChartTheme theme = ChartTheme.light,
  5. TitlesData? title,
  6. ChartTooltip? tooltip,
  7. ChartLegend? legend,
  8. ChartToolbox? toolbox,
  9. GridData? grid,
})

Implementation

DynamicTimeSeriesConfig({
  this.windowSize = 60,
  this.updateInterval = const Duration(milliseconds: 500),
  this.dataGenerator,
  this.theme = ChartTheme.light,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.dynamicTimeSeries, series: const []);