Angular 4

Angular 4 Doughnut Chart Example – How to Use Doughnut Chart in Angular 4?

Doughnut Chart –
A doughnut-chart is an equivalent to the pie chart and it contains blank center allowing for additional information about the data.

Stayed Informed - Angular4 Interview Q/A

Example for Doughnut Chart –

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

export class DoughnutChart {
    data: any;

    constructor() {
        this.data = {
            labels: ['A', 'B', 'C'],
            datasets: [
                {
                    data: [300, 51, 101],                   
                    hoverBackgroundColor: [
                        "#FF6373",
                        "#36A2EB",
                        "#FFCE56"
                    ],
                    backgroundColor: [
                        "#FF6373",
                        "#36A2EB",
                        "#FFCE56"
                    ]
                }]             
        };
    }
}

Doughnutchart.html –

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