ChartCircularCoordinateRender constructor

ChartCircularCoordinateRender({
  1. EdgeInsets margin = EdgeInsets.zero,
  2. EdgeInsets padding = EdgeInsets.zero,
  3. required List<ChartBodyRender> charts,
  4. EdgeInsets? safeArea,
  5. bool outDraw = false,
  6. Duration? animationDuration,
  7. List<Annotation>? backgroundAnnotations,
  8. List<Annotation>? foregroundAnnotations,
  9. ArcPosition arcPosition = ArcPosition.none,
  10. double borderWidth = 1,
  11. StrokeCap? strokeCap,
  12. Color borderColor = Colors.white,
})

Implementation

ChartCircularCoordinateRender({
  super.margin = EdgeInsets.zero,
  super.padding = EdgeInsets.zero,
  required super.charts,
  super.safeArea,
  super.outDraw,
  super.animationDuration,
  super.backgroundAnnotations,
  super.foregroundAnnotations,
  this.arcPosition = ArcPosition.none,
  this.borderWidth = 1,
  this.strokeCap,
  this.borderColor = Colors.white,
});