Angular GoogleCharts-構成構文
この章では、AngularでGoogle ChartAPIを使用してグラフを描画するために必要な構成を紹介します。
ステップ1-Angularアプリケーションを作成する
次の手順に従って、Angular 6で作成したAngularアプリケーションを更新します-プロジェクトセットアップの章-
ステップ | 説明 |
---|---|
1 | Angular 6-プロジェクトのセットアップの章で説明されているように、googleChartsAppという名前のプロジェクトを作成します。 |
2 | 以下で説明するように、app.module.ts、app.component.ts、およびapp.component.htmlを変更します。残りのファイルは変更しないでください。 |
3 | アプリケーションをコンパイルして実行し、実装されたロジックの結果を確認します。 |
変更されたモジュール記述子の内容は次のとおりです app.module.ts。
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { GoogleChartsModule } from 'angular-google-charts';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,GoogleChartsModule
],
providers: [], bootstrap: [AppComponent]
})
export class AppModule { }
以下は、変更されたHTMLホストファイルの内容です。 app.component.html。
<google-chart #chart
[title]="title"
[type]="type"
[data]="data"
[columnNames]="columnNames"
[options]="options"
[width]="width"
[height]="height">
</google-chart>
構成を理解した後、最後に更新されたapp.component.tsが表示されます。
ステップ2-構成を使用する
タイトルを設定
title = 'Browser market shares at a specific website, 2014';
チャートタイプの設定
type='PieChart';
データ
チャートに表示されるデータを構成します。
data = [
['Firefox', 45.0],
['IE', 26.8],
['Chrome', 12.8],
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
];
列名
表示する列名を構成します。
columnNames = ['Browser', 'Percentage'];
オプション
他のオプションを構成します。
options = {
colors: ['#e0440e', '#e6693e', '#ec8f6e', '#f3b49f', '#f6c7b6'], is3D: true
};
例
構成構文をさらに理解するために、次の例を検討してください。
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'Browser market shares at a specific website, 2014';
type = 'PieChart';
data = [
['Firefox', 45.0],
['IE', 26.8],
['Chrome', 12.8],
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
];
columnNames = ['Browser', 'Percentage'];
options = {
};
width = 550;
height = 400;
}
結果
結果を確認します。