AngularGoogleチャート-散布図
以下は、散布図の例です。
Google Chartsの構成構文の章で、グラフの描画に使用される構成についてはすでに説明しました。ここで、散布図の例を見てみましょう。
構成
使用しました ScatterChart 散布図を表示するクラス。
type = 'ScatterChart';
例
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'Age vs Weight';
type='ScatterChart';
data = [
[8,12],
[4, 5.5],
[11,14],
[4,5],
[3,3.5],
[6.5,7]
];
columnNames = ['Age', 'Weight'];
options = {
};
width = 550;
height = 400;
}
結果
結果を確認します。