SimpleBoxPlotData constructor

const SimpleBoxPlotData({
  1. required String label,
  2. List<double> values = const [],
  3. double? min,
  4. double? q1,
  5. double? median,
  6. double? q3,
  7. double? max,
  8. double? mean,
  9. List<double> outliers = const [],
  10. Color? color,
})

Implementation

const SimpleBoxPlotData({
  required this.label,
  this.values = const [],
  this.min,
  this.q1,
  this.median,
  this.q3,
  this.max,
  this.mean,
  this.outliers = const [],
  this.color,
});