Angular Google Charts - Grouped Column Chart



Following is an example of a Grouped Column Chart.

We have already seen the configurations used to draw a chart in Google Charts Configuration Syntax chapter. Now, let us see an example of a Grouped Column Chart.

Configurations

We've used ColumnChart value to show Column Chart.

type = ChartType.ColumnChart;

Example - Usage of Grouped Column Chart

app.ts

import { Component, signal } from '@angular/core';
import { ChartType, GoogleChart } from 'angular-google-charts';

@Component({
   selector: 'app-root',
   imports: [GoogleChart],
   templateUrl: './app.html',
   styleUrl: './app.css'
})
export class App {
   protected readonly title = signal('google-charts-app');
   type = ChartType.ColumnChart;
   data = [
      ["2012", 900, 390],
      ["2013", 1000, 400],
      ["2014", 1170, 440],
      ["2015", 1250, 480],
      ["2016", 1530, 540]
   ];
   columnNames = ['Year', 'Asia','Europe'];
   options = {
      title:'Population (in millions)'
   };
   width = 550;
   height = 400;
}

Result

Verify the result.

Grouped Column Chart
angular_googlecharts_column_charts.htm
Advertisements