Angular Google 图表 - 基本直方图

以下是基本直方图的示例。

我们已经在 Google 图表配置语法一章中了解了用于绘制图表的配置。 现在,让我们看一个基本直方图的示例。


配置

我们使用Histogram类来显示直方图。

type = 'Histogram';

示例

app.component.ts

import { Component } from '@angular/core';
@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   title = 'Students height, in cm';
   type = 'Histogram';
   data = [
      ["1", 80],["2", 55],["3", 68],["4", 80],["5", 54],
      ["6", 70],["7", 85],["8", 78],["9", 70],["10", 58],
      ["11", 90],["12", 65],["13", 88],["14", 82],["15", 65],
      ["16", 86],["17", 45],["18", 62],["19", 84],["20", 75],
      ["21", 82],["22", 75],["23", 58],["24", 70],["25", 85]
   ];
   columnNames = ["Student Roll No", "height"];
   options = {   
      legend:'none'
   };
   width = 550;
   height = 400;
}

结果

验证结果。

基本直方图

❮ angular_googlecharts_histogram_charts.html