Angular 4

Angular 4 Pie Chart Example- How to Use Pie Chart in Angular4?

Pie Chart -
A pie-chart is a circular statistic graphic, which is divided into slices to be example numerical ratings.

Stayed Informed - Angular4 Interview Q/A

Example for Pie Chart –

PieChart.Component.ts –
import {Component} from '@angular/core';

@Component({
    templateUrl: './piechart.html'
})
export class PieChart {
    data: any;

    constructor() {
        this.data = {
            labels: ['Jan','Feb','March'],
            datasets: [
                {
                    data: [305, 51, 111],                    
                    hoverBackgroundColor: [
                        "#FF6371",
                        "#36A2EB",
                        "#FFCE45"
                    ],
                    backgroundColor: [
                        "#FF6371",
                        "#36A2EB",
                        "#FFCE45"
                    ]
                }]    
            };
    }
}

piechart.html –

<div class="row">
    <div class="col-lg-12" id="PieChart">
        <p-chart type="pie" [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.
^