ChartRadar constructor
const
ChartRadar({
- Key? key,
- required List<
int> ticks, - required List<
Series< lineData,LineSeries, String> > - bool reverseAxis = false,
- TextStyle ticksTextStyle = const TextStyle(color: Colors.grey, fontSize: 12),
- TextStyle featuresTextStyle = const TextStyle(color: Color(0xff707f89), fontSize: 14),
- Color outlineColor = Colors.grey,
- Color axisColor = Colors.grey,
- bool showLegend = true,
- int sides = 0,
- double? height,
- 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});