Angular Google Charts-구성 구문
이 장에서는 Angular에서 Google Chart API를 사용하여 차트를 그리는 데 필요한 구성을 보여줍니다.
1 단계-Angular 애플리케이션 생성
다음 단계에 따라 Angular 6 에서 만든 Angular 응용 프로그램을 업데이트하십시오 .-프로젝트 설정 장-
단계 | 기술 |
---|---|
1 | Angular 6-프로젝트 설정 장에 설명 된대로 googleChartsApp 이라는 이름으로 프로젝트를 만듭니다 . |
2 | 아래에 설명 된대로 app.module.ts , app.component.ts 및 app.component.html 을 수정 하십시오 . 나머지 파일은 변경하지 마십시오. |
삼 | 애플리케이션을 컴파일하고 실행하여 구현 된 논리의 결과를 확인합니다. |
다음은 수정 된 모듈 설명 자의 내용입니다. 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;
}
결과
결과를 확인하십시오.