Angular 2

Angular 4 Bar Chart Example –How to Use Bar Chart in Angular4?

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!!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^