Angular Bar Chart Example Tutorial
Hi,
Are you looking for example of angular bar chart example. we will help you to give example of angular bar chart npm. if you have question about angular ng2-charts bar chart then i will give simple example with solution. This article goes in detailed on how to add bar chart in angular. You just need to some step to done angular bar chart example.
In this example we will use ng2-charts npm package to create bar chart example in angular 11 application. we will simply install that ng2-charts npm package and use ChartsModule module to create code.
you can easily add bar 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.
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 ng2-charts npm Package
Now in this step, we need to just install ng2-charts in our angular application. so let's add as like bellow:
npm install ng2-charts chart.js --save
Step 3: Import ChartsModule
we will import ChartsModule module as like bellow code:
src/app/app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { ChartsModule } from 'ng2-charts';
@NgModule({
imports: [ BrowserModule, FormsModule, ChartsModule ],
declarations: [ AppComponent ],
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, OnInit } from '@angular/core';
import { ChartOptions, ChartType, ChartDataSets } from 'chart.js';
import { Label } from 'ng2-charts';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
public barChartOptions: ChartOptions = {
responsive: true,
};
public barChartLabels: Label[] = ['2015', '2016', '2017', '2018', '2019', '2020'];
public barChartType: ChartType = 'bar';
public barChartLegend = true;
public barChartPlugins = [];
public barChartData: ChartDataSets[] = [
{ data: [65, 67, 70, 75, 80, 90], label: 'PHP' },
{ data: [50, 48, 47, 49, 44, 40], label: '.Net' },
{ data: [40, 30, 28, 25, 22, 20], label: 'Java' },
];
constructor() { }
ngOnInit() {
}
}
Step 5: Update HTML File
here, we need to update html file as like bellow code:
src/app/app.component.html
<h1>Angular Bar Chart Example - ItSolutionStuff.com</h1>
<div style="display: block;" >
<canvas baseChart
[datasets]="barChartData"
[labels]="barChartLabels"
[options]="barChartOptions"
[plugins]="barChartPlugins"
[legend]="barChartLegend"
[chartType]="barChartType">
</canvas>
</div>
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 Pie Chart Example Tutorial
- Angular Login with Google Account Example
- Angular Material Datepicker Disable Weekends Dates Example
- Angular Material Date Range Picker Example
- Angular 11 Bootstrap 4 Modal Example
- Angular 11 Routing Tutorial with Example
- Angular Get Element By Id Value Example
- How to Create Service in Angular 10?
- Angular 10 Template Driven Forms with Validation Example