mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import {Component, ViewChild, Input, Output, ElementRef, EventEmitter} from '@angular/core';
|
|
|
|
import {BaThemePreloader} from '../../../theme/services';
|
|
|
|
import 'amcharts3';
|
|
import 'amcharts3/amcharts/plugins/responsive/responsive.js';
|
|
import 'amcharts3/amcharts/serial.js';
|
|
|
|
import 'ammap3';
|
|
import 'ammap3/ammap/maps/js/worldLow';
|
|
|
|
|
|
import {BaAmChartThemeService} from './baAmChartTheme.service';
|
|
|
|
@Component({
|
|
selector: 'ba-am-chart',
|
|
templateUrl: './baAmChart.html',
|
|
styleUrls: ['./baAmChart.scss'],
|
|
providers: [BaAmChartThemeService],
|
|
})
|
|
export class BaAmChart {
|
|
|
|
@Input() baAmChartConfiguration:Object;
|
|
@Input() baAmChartClass:string;
|
|
@Output() onChartReady = new EventEmitter<any>();
|
|
|
|
@ViewChild('baAmChart') public _selector:ElementRef;
|
|
|
|
constructor (private _baAmChartThemeService:BaAmChartThemeService) {
|
|
this._loadChartsLib();
|
|
}
|
|
|
|
ngOnInit() {
|
|
AmCharts.themes.blur = this._baAmChartThemeService.getTheme();
|
|
}
|
|
|
|
ngAfterViewInit() {
|
|
let chart = AmCharts.makeChart(this._selector.nativeElement, this.baAmChartConfiguration);
|
|
this.onChartReady.emit(chart);
|
|
}
|
|
|
|
private _loadChartsLib():void {
|
|
BaThemePreloader.registerLoader(new Promise((resolve, reject) => {
|
|
let amChartsReadyMsg = 'AmCharts ready';
|
|
|
|
if (AmCharts.isReady) {
|
|
resolve(amChartsReadyMsg);
|
|
} else {
|
|
AmCharts.ready(function () {
|
|
resolve(amChartsReadyMsg);
|
|
});
|
|
}
|
|
}));
|
|
}
|
|
}
|