UNPKG

@shikshalokam/sl-reports

Version:

Library to integrate questionnaire in SL Projects

18 lines (17 loc) 518 B
import { OnInit } from '@angular/core'; import { ChartOptions, ChartType } from 'chart.js'; import { Label, SingleDataSet } from 'ng2-charts'; export declare class PieChartComponent implements OnInit { data: any; questionNumber: any; chartRootElement: any; chartCanvas: any; pieChartOptions: ChartOptions; pieChartLabels: Label[]; pieChartData: SingleDataSet; pieChartType: ChartType; pieChartLegend: boolean; chartColors: Array<any>; constructor(); ngOnInit(): void; }