Grafici Google angolari - Grafico a barre raggruppato

Di seguito è riportato un esempio di un grafico a barre raggruppato.

Abbiamo già visto le configurazioni utilizzate per disegnare un grafico nel capitolo Sintassi della configurazione di Google Charts . Vediamo ora un esempio di grafico a barre raggruppato.

Configurazioni

Noi abbiamo usato BarChart classe per mostrare il grafico a barre.

type = 'BarChart';

Esempio

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 = 'BarChart';
   data = [
      ["2012", 900, 390],
      ["2013", 1000, 400],
      ["2014", 1170, 440],
      ["2015", 1250, 480],
      ["2016", 1530, 540]
   ];
   columnNames = ['Year', 'Asia','Europe'];
   options = {   
      hAxis: {
         title: 'Year'
      },
      vAxis:{
         minValue:0
      }  
   };
   width = 550;
   height = 400;
}

Risultato

Verifica il risultato.