RectSeries constructor

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

Implementation

RectSeries({
  this.leftMargin = SNumber.zero,
  this.topMargin = SNumber.zero,
  this.rightMargin = SNumber.zero,
  this.bottomMargin = SNumber.zero,
  this.width,
  this.height,
  super.coordSystem,
  super.xAxisIndex,
  super.yAxisIndex,
  super.calendarIndex,
  super.parallelIndex,
  super.polarAxisIndex,
  super.radarIndex,
  super.animation,
  super.tooltip,
  super.clip,
  super.touch,
  super.z,
});