There are few plugins available to add Bar Chart in Angular App.
In this article, I am going to use ng2-charts, which is an open-source JS library, and it is exclusively built for Angular 2 and later versions. I have tested the code and it works for Angular 9.
It is easily installable via npm and creates really amazing charts in few minutes.
The ng2-charts supports Chart.js.
Let’s make an app with just Bar Chart so that it will be easily understandable.
Step 1
//make new angular app
ng new bar-chart-app
Step 2
// go inside app folder
cd bar-chart-app
Step 3
// create angular component
ng g c bar-chart
where g c stands for globally create.
Step 4
// install ng2-charts and Chart js via npm
npm install ng2-charts chart.js --save
Step 5
This is an important step and you must have done it many times. After you create a new component and add a module, you need to import it to app.module.ts file.
Import ChartsModule like this example code.
import { ChartsModule } from 'ng2-charts';
@NgModule({
declarations: [...],
imports: [
ChartsModule,
...
],
providers: [...],
bootstrap: [...]
})
export class AppModule { }
Step 6
Go to bar-chart.component.ts file and add the code below.
import { Component, OnInit } from '@angular/core';
import { ChartOptions, ChartType, ChartDataSets } from 'chart.js';
import { Label } from 'ng2-charts';
@Component({
selector: 'app-bar-chart',
templateUrl: './bar-chart.component.html',
styleUrls: ['./bar-chart.component.css']
})
export class BarChartComponent {
barChartOptions: ChartOptions = {
responsive: true,
};
public barChartLabels: Label[] = ['2006', '2007', '2008', '2009', '2010', '2011', '2012'];
barChartType: ChartType = 'bar';
barChartLegend = true;
barChartPlugins = [];
public barChartData: ChartDataSets[] = [
{ data: [65, 59, 80, 81, 56, 55, 40], label: 'Series A' },
{ data: [28, 48, 40, 19, 86, 27, 90], label: 'Series B' }
];
constructor() { }
ngOnInit() {
}
}
Step 7
Go to bar-chart.component.html file and add this code:
<div style="display: block;">
<canvas baseChart
[datasets]="barChartData"
[labels]="barChartLabels"
[options]="barChartOptions"
[plugins]="barChartPlugins"
[legend]="barChartLegend"
[chartType]="barChartType">
</canvas>
</div>
Open the app in browser, it should look like this:

bar chart ng2-chart