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