BoxPlotPainter constructor

BoxPlotPainter({
  1. required List<BoxPlotData> data,
  2. String? xAxisLabel,
  3. String? yAxisLabel,
  4. required Color gridColor,
  5. TextStyle? textStyle,
  6. required bool showLabels,
  7. required bool showGrid,
  8. required double boxWidth,
})

Implementation

BoxPlotPainter({
  required this.data,
  this.xAxisLabel,
  this.yAxisLabel,
  required this.gridColor,
  this.textStyle,
  required this.showLabels,
  required this.showGrid,
  required this.boxWidth,
});