RadarChartConfig constructor
RadarChartConfig({
- required List<
RadarAxis> axes, - required List<
Series> series, - ChartTheme? theme,
- bool filled = true,
- bool showLabels = true,
- bool showDots = true,
- int webLevels = 4,
- double fillOpacity = 0.22,
- double startAngleDeg = -90,
- TitlesData? title,
- ChartTooltip? tooltip,
- ChartLegend? legend,
- ChartToolbox? toolbox,
- GridData? grid,
Implementation
RadarChartConfig({
required this.axes,
required super.series,
super.theme,
this.filled = true,
this.showLabels = true,
this.showDots = true,
this.webLevels = 4,
this.fillOpacity = 0.22,
this.startAngleDeg = -90,
super.title,
super.tooltip,
super.legend,
super.toolbox,
super.grid,
}) : super(type: ChartType.radar);