HistogramPainter constructor

HistogramPainter({
  1. required List<HistogramBin> bins,
  2. TextStyle? textStyle,
  3. required bool showValues,
  4. required bool showLabels,
  5. required Color defaultBarColor,
  6. String? xAxisLabel,
  7. String? yAxisLabel,
})

Implementation

HistogramPainter({
  required this.bins,
  this.textStyle,
  required this.showValues,
  required this.showLabels,
  required this.defaultBarColor,
  this.xAxisLabel,
  this.yAxisLabel,
});