
Angular Google Charts - Negative Bar Chart
Following is an example of a Negative 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 Negative Bar 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 = '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