Radar constructor
const
Radar({
- required List<
RadarIndicator> indicator, - num offsetAngle = 0,
- int splitNumber = 5,
- RadarShape shape = RadarShape.polygon,
- bool silent = false,
- bool clockwise = true,
- AxisLine axisLine = const AxisLine(),
- MainTick axisTick = const MainTick(),
- StyleFun2<
int, int, AreaStyle> ? splitStyleFun, - StyleFun<
int, LineStyle> ? borderStyleFun, - StyleFun<
RadarIndicator, LabelStyle> ? labelStyleFun, - List<
SNumber> center = const [SNumber.percent(50), SNumber.percent(50)], - SNumber radius = const SNumber.percent(50),
- String id = '',
- bool show = true,
Implementation
const Radar({
required this.indicator,
this.offsetAngle = 0,
this.splitNumber = 5,
this.shape = RadarShape.polygon,
this.silent = false,
this.clockwise = true,
this.axisLine = const AxisLine(),
this.axisTick = const MainTick(),
this.splitStyleFun,
this.borderStyleFun,
this.labelStyleFun,
super.center,
super.radius,
super.id,
super.show,
});