RadarChartConfig constructor

RadarChartConfig({
  1. required List<RadarAxis> axes,
  2. required List<Series> series,
  3. ChartTheme? theme,
  4. bool filled = true,
  5. bool showLabels = true,
  6. bool showDots = true,
  7. int webLevels = 4,
  8. double fillOpacity = 0.22,
  9. double startAngleDeg = -90,
  10. TitlesData? title,
  11. ChartTooltip? tooltip,
  12. ChartLegend? legend,
  13. ChartToolbox? toolbox,
  14. 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);