UBarChart constructor

const UBarChart({
  1. required List<UChartSeries> series,
  2. Key? key,
  3. List<String>? categories,
  4. String? title,
  5. UChartStyle style = const UChartStyle(),
  6. double height = 260,
})

Implementation

const UBarChart({
  required this.series,
  super.key,
  this.categories,
  this.title,
  this.style = const UChartStyle(),
  this.height = 260,
});