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 class to show column based chart.

Example

app.component.ts

import { Component } from '@angular/core';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   title = 'Population (in millions)';
   type = 'ColumnChart';
   data = [
      ["2012", 900, 390],
      ["2013", 1000, 400],
      ["2014", 1170, 440],
      ["2015", 1250, 480],
      ["2016", 1530, 540]
   ];
   columnNames = ['Year', 'Asia','Europe'];
   options = {};
   width = 550;
   height = 400;
}

Result

Verify the result.

Grouped Column Chart
angular_googlecharts_column_charts.htm
Advertisements