UHistogramChart constructor

const UHistogramChart({
  1. required List<double> data,
  2. Key? key,
  3. int bins = 10,
  4. String? title,
  5. Color? color,
  6. UChartStyle style = const UChartStyle(),
  7. double height = 260,
})

Implementation

const UHistogramChart({
  required this.data,
  super.key,
  this.bins = 10,
  this.title,
  this.color,
  this.style = const UChartStyle(),
  this.height = 260,
});