Chart constructor

Chart({
  1. required ChartGrid grid,
  2. required List<Dataset> datasets,
  3. Widget? overlay,
  4. Widget? title,
  5. Widget? bottom,
  6. Widget? left,
  7. Widget? right,
})

Implementation

Chart({
  required this.grid,
  required this.datasets,
  this.overlay,
  this.title,
  this.bottom,
  this.left,
  this.right,
});