ChartGroup constructor

ChartGroup({
  1. required String id,
  2. String? seriesCategory,
  3. ChartType chartType = ChartType.line,
  4. Color? color,
})

Implementation

ChartGroup({
  required this.id,
  this.seriesCategory,
  this.chartType = ChartType.line,
  this.color,
});