AnimatedCircularChart constructor

AnimatedCircularChart({
  1. Key? key,
  2. required Size size,
  3. required List<CircularStackEntry>? initialChartData,
  4. CircularChartType chartType = CircularChartType.Radial,
  5. Duration duration = _kDuration,
  6. bool percentageValues = false,
  7. double? holeRadius,
  8. double startAngle = _kStartAngle,
  9. String? holeLabel,
  10. TextStyle? labelStyle,
  11. SegmentEdgeStyle edgeStyle = SegmentEdgeStyle.flat,
})

Implementation

AnimatedCircularChart({
  Key? key,
  required this.size,
  required this.initialChartData,
  this.chartType = CircularChartType.Radial,
  this.duration = _kDuration,
  this.percentageValues = false,
  this.holeRadius,
  this.startAngle = _kStartAngle,
  this.holeLabel,
  this.labelStyle,
  this.edgeStyle = SegmentEdgeStyle.flat,
})  : assert(size != null),
      super(key: key);