RadialStackedBarChart<D, T> constructor

const RadialStackedBarChart<D, T>({
  1. Key? key,
  2. required List<Series<D, T>> data,
  3. RadialScale? scale,
  4. double angle = 0.0,
  5. Color? backgroundColor,
  6. EdgeInsets padding = const EdgeInsets.all(24),
  7. Clip clipBehavior = Clip.hardEdge,
  8. double holeSize = 0.0,
  9. double arcSpacing = 0.0,
  10. bool roundStart = false,
  11. bool roundEnd = false,
  12. Duration animationDuration = Duration.zero,
  13. Curve animationCurve = Curves.easeOut,
})

Implementation

const RadialStackedBarChart({
  super.key,
  required this.data,
  this.scale,
  this.angle = 0.0,
  this.backgroundColor,
  this.padding = const EdgeInsets.all(24),
  this.clipBehavior = Clip.hardEdge,
  this.holeSize = 0.0,
  this.arcSpacing = 0.0,
  this.roundStart = false,
  this.roundEnd = false,
  this.animationDuration = Duration.zero,
  this.animationCurve = Curves.easeOut,
});