ChartRadar constructor

const ChartRadar({
  1. Key? key,
  2. required List<int> ticks,
  3. required List<Series<LineSeries, String>> lineData,
  4. bool reverseAxis = false,
  5. TextStyle ticksTextStyle = const TextStyle(color: Colors.grey, fontSize: 12),
  6. TextStyle featuresTextStyle = const TextStyle(color: Color(0xff707f89), fontSize: 14),
  7. Color outlineColor = Colors.grey,
  8. Color axisColor = Colors.grey,
  9. bool showLegend = true,
  10. int sides = 0,
  11. double? height,
  12. ValueChanged? onSelectionChanged,
})

Implementation

const ChartRadar(
    {super.key,
    required this.ticks,
    required this.lineData,
    this.reverseAxis = false,
    this.ticksTextStyle = const TextStyle(color: Colors.grey, fontSize: 12),
    this.featuresTextStyle =
        const TextStyle(color: Color(0xff707f89), fontSize: 14),
    this.outlineColor = Colors.grey,
    this.axisColor = Colors.grey,
    this.showLegend = true,
    this.sides = 0,
    this.height,
    this.onSelectionChanged});