FastDoughnutChartPainter constructor

FastDoughnutChartPainter({
  1. required List<FastChartData> data,
  2. required double animationValue,
  3. double? labelValueThreshold = 0.05,
  4. bool? showLabel = true,
  5. double? doughnutRatio = 0.5,
})

Implementation

FastDoughnutChartPainter({
  required super.data,
  required super.animationValue,
  super.labelValueThreshold,
  super.showLabel,
  double? doughnutRatio = 0.5,
}) : doughnutRatio = doughnutRatio ?? 0.5;