PaddedPieChartConfig constructor

PaddedPieChartConfig({
  1. required List<PieSlice> slices,
  2. ChartTheme theme = ChartTheme.light,
  3. double padAngle = 0.06,
  4. bool showLabels = true,
  5. bool showPercentage = true,
  6. TitlesData? title,
  7. ChartTooltip? tooltip,
  8. ChartLegend? legend,
  9. ChartToolbox? toolbox,
  10. GridData? grid,
})

Implementation

PaddedPieChartConfig({
  required this.slices,
  this.theme = ChartTheme.light,
  this.padAngle = 0.06,
  this.showLabels = true,
  this.showPercentage = true,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.paddedPie, series: const []);