buildChart method

  1. @override
Widget buildChart()
override

Method to create the appropriate chart widget

Implementation

@override
Widget buildChart() {
  if (isMultiBar) {
    return MultiBarChartWidget(config: this);
  }
  return BarChartWidget(config: this);
}