Bar Chart –
A bar-chart is a grouped of data with rectangular bars with lengths equivalent to the values of the data.
Stayed Informed - Angular4 Interview Q/A
Example for Bar Chart –
BarChart.Component.ts –
import {Component} from '@angular/core'; export class BarChart { data: any; constructor() { this.data = { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], datasets: [ { label: '', backgroundColor: '#42A5F5', borderColor: '#1E88E5', data: [63, 58, 82, 81, 56, 55, 41] }, { label: '', backgroundColor: '#9CCC65', borderColor: '#7CB342', data: [27, 49, 45, 19, 87, 28, 90] } ] } } }
Barchart.html –
<div class="row"> <div class="col-lg-12" id="BarChart"> <p-chart type="bar" [data]="data"></p-chart> </div> </div>
Result
–
I hope you are enjoying with this post! Please
share with you friends!! Thank you!!!