BaseChartPainter constructor

const BaseChartPainter({
  1. required ChartTheme theme,
  2. required List<ChartDataSet> dataSets,
  3. bool showGrid = true,
  4. bool showAxis = true,
  5. bool showLabel = true,
})

Implementation

const BaseChartPainter({
  required this.theme,
  required this.dataSets,
  this.showGrid = true,
  this.showAxis = true,
  this.showLabel = true,
});