PointSeries constructor

PointSeries(
  1. List<MultiData> data, {
  2. SNumber leftMargin = SNumber.zero,
  3. SNumber topMargin = SNumber.zero,
  4. SNumber rightMargin = SNumber.zero,
  5. SNumber bottomMargin = SNumber.zero,
  6. SNumber? width,
  7. SNumber? height,
  8. int xAxisIndex = 0,
  9. int yAxisIndex = 0,
  10. int polarAxisIndex = 0,
  11. int calendarIndex = 0,
  12. CoordSystem? coordSystem = CoordSystem.grid,
  13. ToolTip? tooltip,
  14. AnimatorProps? animation,
  15. bool touch = true,
  16. bool clip = true,
  17. int z = 0,
})

Implementation

PointSeries(
  this.data, {
  super.leftMargin,
  super.topMargin,
  super.rightMargin,
  super.bottomMargin,
  super.width,
  super.height,
  super.xAxisIndex = 0,
  super.yAxisIndex = 0,
  super.polarAxisIndex = 0,
  super.calendarIndex = 0,
  super.coordSystem = CoordSystem.grid,
  super.tooltip,
  super.animation,
  super.touch,
  super.clip,
  super.z,
}) : super(
        radarIndex: -1,
        parallelIndex: -1,
      );