TGroupBarChart constructor
const
TGroupBarChart({
- Key? key,
- required String title,
- required List<
ChartSeriesData> seriesList, - VoidCallback? optionTap,
- bool showLegends = true,
- bool showOption = true,
- Axis direction = Axis.horizontal,
- 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,
});