Angular-googlecharts-histogram-multiple

提供:Dev Guides
移動先:案内検索

複数シリーズのヒストグラムチャート

以下は、複数の系列を持つヒストグラムチャートの例です。

link:/angular_googlecharts/angular_googlecharts_configuration_syntax [Googleグラフの構成構文]の章で、グラフを描画するために使用される構成を既に確認しました。 次に、複数の系列を持つヒストグラムチャートの例を見てみましょう。

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

結果

結果を確認します。

複数シリーズのヒストグラムグラフ