Angular Google Charts - 分组柱状图



以下是分组柱状图示例。

我们在 Google Charts 配置语法 章节中已经看到用于绘制图表的配置。现在,让我们看一个分组柱状图示例。

配置

我们使用 ColumnChart 类来显示基于柱的图表。

示例

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;
}

结果

验证结果。

Grouped Column Chart
angular_googlecharts_column_charts.htm
广告