Angular Google Pie Chart Example
Hi,
This post will give you example of angular google pie chart example. i would like to show you angular google pie chart npm. you can understand a concept of angular angular-google-charts google pie chart . This article goes in detailed on how to add google pie chart in angular.
you can easily add google api pie chart in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 version app.
In this example we will use angular-google-charts npm package to create google api pie chart example in angular 11 application. we will simply install that angular-google-charts npm package and use GoogleChartsModule module to create code.
So, let's see bellow step and get qr code as like bellow screenshot:
Preview:
Step 1: Create New App
You can easily create your angular app using bellow command:
ng new myNewApp
Step 2: Install angular-google-charts npm Package
Now in this step, we need to just install angular-google-charts in our angular application. so let's add as like bellow:
npm install angular-google-charts
Step 3: Import GoogleChartsModule
we will import GoogleChartsModule module as like bellow code:
src/app/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 { }
Step 4: Update Ts File
here, we need to update ts file as like bellow:
src/app/app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
myType = 'PieChart';
myData = [
['PHP', 8136000],
['Node', 8538000],
['JQuery', 2244000],
['.Net', 3470000],
['Java', 19500000]
];
width = 550;
height = 400;
}
Step 5: Update HTML File
here, we need to update html file as like bellow code:
src/app/app.component.html
<h1>Angular Google Pie Chart Example - ItSolutionStuff.com</h1>
<google-chart
[type]="myType"
[data]="myData"
[width]="width"
[height]="height">
</google-chart>
Now you can run by bellow command:
ng serve
now you can check it.
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular 11 Bubble Chart using ng2-charts Example
- Angular 11 Radar Chart using ng2-charts Example
- Angular Pie Chart Example Tutorial
- Angular 11 Pie Chart using ng2-charts Example
- Angular 11 Google OAuth Social Login Example
- Using Google Trends For Keyword Research
- Angular Google Maps Marker Click Event Example
- Angular Google Maps using agm/core Example
- Laravel Line Chart using Google Charts API Example
- Laravel Google reCaptcha using anhskohbo/no-captcha Example