RadarSeries constructor

RadarSeries(
  1. List<RadarGroup> data, {
  2. required int splitNumber,
  3. required StyleFun<RadarGroup, AreaStyle> areaStyleFun,
  4. StyleFun<RadarGroup, LabelStyle>? labelStyleFun,
  5. num nameGap = 0,
  6. SNumber leftMargin = SNumber.zero,
  7. SNumber topMargin = SNumber.zero,
  8. SNumber rightMargin = SNumber.zero,
  9. SNumber bottomMargin = SNumber.zero,
  10. SNumber? width,
  11. SNumber? height,
  12. int radarIndex = 0,
  13. ToolTip? tooltip,
  14. AnimatorProps? animation,
  15. bool touch = true,
  16. bool clip = true,
  17. int z = 0,
})

Implementation

RadarSeries(
  this.data, {
  required this.splitNumber,
  required this.areaStyleFun,
  this.labelStyleFun,
  this.nameGap = 0,
  super.leftMargin,
  super.topMargin,
  super.rightMargin,
  super.bottomMargin,
  super.width,
  super.height,
  super.radarIndex = 0,
  super.tooltip,
  super.animation,
  super.touch,
  super.clip,
  super.z,
}) : super(
        coordSystem: CoordSystem.radar,
        parallelIndex: -1,
        xAxisIndex: -1,
        yAxisIndex: -1,
        calendarIndex: -1,
        polarAxisIndex: -1,
      );