BoxplotSeries constructor

BoxplotSeries({
  1. required List<BoxplotData> data,
  2. required StyleFun<BoxplotData, LineStyle> lineStyleFun,
  3. AnimatorProps? animation,
  4. SNumber bottomMargin = SNumber.zero,
  5. bool clip = true,
  6. SNumber? height,
  7. SNumber leftMargin = SNumber.zero,
  8. int polarAxisIndex = 0,
  9. SNumber rightMargin = SNumber.zero,
  10. SNumber topMargin = SNumber.zero,
  11. bool touch = true,
  12. SNumber? width,
  13. int xAxisIndex = 0,
  14. int yAxisIndex = 0,
  15. ToolTip? tooltip,
  16. int z = 0,
})

Implementation

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