RadarSeries constructor

const RadarSeries({
  1. required List<double> values,
  2. Color? fillColor,
  3. Gradient? fillGradient,
  4. double fillOpacity = 0.35,
  5. Color strokeColor = const Color(0xFF607D8B),
  6. double strokeWidth = 2,
  7. bool showPoints = true,
  8. double pointRadius = 3,
  9. Color labelBgColor = Colors.white,
  10. String? legend,
})

Implementation

const RadarSeries({
  required this.values,
  this.fillColor,
  this.fillGradient,
  this.fillOpacity = 0.35,
  this.strokeColor = const Color(0xFF607D8B),
  this.strokeWidth = 2,
  this.showPoints = true,
  this.pointRadius = 3,
  this.labelBgColor = Colors.white,
  this.legend,
}) : assert(fillOpacity >= 0 && fillOpacity <= 1);