BoxplotSeries constructor
BoxplotSeries({
- required List<
BoxplotData> data, - required StyleFun<
BoxplotData, LineStyle> lineStyleFun, - AnimatorProps? animation,
- SNumber bottomMargin = SNumber.zero,
- bool clip = true,
- SNumber? height,
- SNumber leftMargin = SNumber.zero,
- int polarAxisIndex = 0,
- SNumber rightMargin = SNumber.zero,
- SNumber topMargin = SNumber.zero,
- bool touch = true,
- SNumber? width,
- int xAxisIndex = 0,
- int yAxisIndex = 0,
- ToolTip? tooltip,
- 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,
);