RadarChartPainter constructor
const
RadarChartPainter({
- required ChartTheme theme,
- required List<
RadarDataSet> radarDataSets, - double maxValue = 100.0,
- int gridLevels = 5,
- double animationProgress = 1.0,
- ChartInteractionResult? selectedPoint,
- bool showGrid = true,
- bool showAxis = true,
- 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 []);