EccEcdGraphic constructor

EccEcdGraphic(
  1. {required Size size,
  2. required List<num> numsX,
  3. required List<num> numsY,
  4. int? nbGradX,
  5. int? nbGradY,
  6. Color? colorAxes,
  7. bool? showECC,
  8. bool? showECD,
  9. Color? colorECC,
  10. Color? colorECD,
  11. double? strokeLine,
  12. bool? pourcentageMode,
  13. bool? showMedian,
  14. Color? colorMedian}
)

Implementation

EccEcdGraphic(
    {required this.size,
    required this.numsX,
    required this.numsY,
    this.nbGradX,
    this.nbGradY,
    this.colorAxes,
    this.showECC,
    this.showECD,
    this.colorECC,
    this.colorECD,
    this.strokeLine,
    this.pourcentageMode,
    this.showMedian,
    this.colorMedian});