NestedPieChartConfig constructor

NestedPieChartConfig({
  1. required List<PieRing> rings,
  2. ChartTheme theme = ChartTheme.light,
  3. double ringGap = 8.0,
  4. double padAngle = 0.02,
  5. TitlesData? title,
  6. ChartTooltip? tooltip,
  7. ChartLegend? legend,
  8. ChartToolbox? toolbox,
  9. GridData? grid,
})

Implementation

NestedPieChartConfig({
  required this.rings,
  this.theme = ChartTheme.light,
  this.ringGap = 8.0,
  this.padAngle = 0.02,
  super.title,
  super.tooltip,
  super.legend,
  super.toolbox,
  super.grid,
}) : super(type: ChartType.nestedPie, series: const []);