
Angular Google Charts - Basic Bar Chart
Following is an example of a basic Bar 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 basic Bar Chart.
Configurations
We've used BarChart class to show bar based chart.
type = 'BarChart';
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 = 'BarChart'; data = [ ["2012", 900], ["2013", 1000], ["2014", 1170], ["2015", 1250], ["2016", 1530] ]; columnNames = ['Year', 'Asia']; options = { }; width = 550; height = 400; }
Result
Verify the result.

angular_googlecharts_bar_charts.htm
Advertisements