3248caed07
Fixed doughnut chart colour loading issues, added WIP dashboard charts, few other misc changes
83 lines
1.7 KiB
TypeScript
83 lines
1.7 KiB
TypeScript
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
|
|
import { ApiService } from '../providers/api-service';
|
|
import { OrgPiesService } from '../providers/org-pies.service';
|
|
import { DataType } from '../shared/data-types.enum';
|
|
import { ChartData } from '../_interfaces/chart-data';
|
|
|
|
|
|
@Component({
|
|
selector: 'org-pie-panel',
|
|
templateUrl: 'org-pie-panel.component.html',
|
|
})
|
|
|
|
export class OrgPiePanel implements OnInit {
|
|
|
|
public chartType = 'doughnut';
|
|
public chartLegend = true;
|
|
public doughnutChartDataLocal: number[] = [];
|
|
public doughnutChartColors: any[] = [
|
|
{
|
|
backgroundColor: [
|
|
'red',
|
|
'green',
|
|
'pink',
|
|
'purple',
|
|
'yellow',
|
|
'brown',
|
|
'magenta',
|
|
'cyan',
|
|
'orange',
|
|
'blue'
|
|
]
|
|
},
|
|
{
|
|
borderColor: [
|
|
'red',
|
|
'green',
|
|
'pink',
|
|
'purple',
|
|
'yellow',
|
|
'brown',
|
|
'magenta',
|
|
'cyan',
|
|
'orange',
|
|
'blue'
|
|
]
|
|
}
|
|
];
|
|
|
|
public doughnutChartLabelsLocal: string[] = [];
|
|
|
|
constructor(
|
|
private api: ApiService,
|
|
private pieService: OrgPiesService,
|
|
) {
|
|
this.pieService.getOrgPie().subscribe(
|
|
result => {
|
|
this.setChartData(result.local_all);
|
|
},
|
|
error => {
|
|
console.log('Retrieval Error');
|
|
console.log( error._body );
|
|
}
|
|
);
|
|
}
|
|
|
|
public ngOnInit(): void {
|
|
|
|
}
|
|
|
|
private setChartData(dataLocal: any) {
|
|
this.doughnutChartDataLocal = Object.keys(dataLocal).map(key => dataLocal[key]);
|
|
// setTimeout is currently a workaround for ng2-charts labels
|
|
setTimeout(() => this.doughnutChartLabelsLocal = Object.keys(dataLocal), 0);
|
|
}
|
|
|
|
// events
|
|
public chartClicked(e: any): void {
|
|
}
|
|
|
|
public chartHovered(e: any): void {
|
|
}
|
|
|
|
}
|