PieChart<D> constructor
PieChart<D> (
- List<
Series< seriesList, {dynamic, D> > - bool? animate,
- Duration? animationDuration,
- ArcRendererConfig<
D> ? defaultRenderer, - List<
ChartBehavior< ? behaviors,D> > - List<
SelectionModelConfig< ? selectionModels,D> > - RTLSpec? rtlSpec,
- LayoutConfig? layoutConfig,
- bool defaultInteractions = true,
Implementation
PieChart(
List<common.Series<dynamic, D>> seriesList, {
bool? animate,
Duration? animationDuration,
common.ArcRendererConfig<D>? defaultRenderer,
List<ChartBehavior<D>>? behaviors,
List<SelectionModelConfig<D>>? selectionModels,
common.RTLSpec? rtlSpec,
LayoutConfig? layoutConfig,
bool defaultInteractions = true,
}) : super(
seriesList,
animate: animate,
animationDuration: animationDuration,
defaultRenderer: defaultRenderer,
behaviors: behaviors,
selectionModels: selectionModels,
rtlSpec: rtlSpec,
layoutConfig: layoutConfig,
defaultInteractions: defaultInteractions,
);