RadarChartPainter constructor

const RadarChartPainter({
  1. required ChartTheme theme,
  2. required List<RadarDataSet> radarDataSets,
  3. double maxValue = 100.0,
  4. int gridLevels = 5,
  5. double animationProgress = 1.0,
  6. ChartInteractionResult? selectedPoint,
  7. bool showGrid = true,
  8. bool showAxis = true,
  9. bool showLabel = true,
})

Creates a radar chart painter.

Implementation

const RadarChartPainter({
  required super.theme,
  required this.radarDataSets,
  this.maxValue = 100.0,
  this.gridLevels = 5,
  this.animationProgress = 1.0,
  this.selectedPoint,
  super.showGrid,
  super.showAxis,
  super.showLabel,
}) : super(dataSets: const []);