TGroupBarChart constructor

const TGroupBarChart({
  1. Key? key,
  2. required String title,
  3. required List<ChartSeriesData> seriesList,
  4. VoidCallback? optionTap,
  5. bool showLegends = true,
  6. bool showOption = true,
  7. Axis direction = Axis.horizontal,
  8. double height = 300,
})

Creates a grouped bar chart widget.

Implementation

const TGroupBarChart({
  super.key,
  required this.title,
  required this.seriesList,
  this.optionTap,
  this.showLegends = true,
  this.showOption = true,
  this.direction = Axis.horizontal,
  this.height = 300,
});