BarChart constructor

const BarChart({
  1. Key? key,
  2. required ChartConfig config,
  3. ChartWidgetController? controller,
  4. BarChartOrientation orientation = BarChartOrientation.vertical,
  5. BarChartLayout layout = BarChartLayout.grouped,
  6. ChartTheme? theme,
})

Implementation

const BarChart({
  super.key,
  required this.config,
  this.controller,
  this.orientation = BarChartOrientation.vertical,
  this.layout = BarChartLayout.grouped,
  this.theme,
});