You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
704 B
TypeScript
28 lines
704 B
TypeScript
|
6 years ago
|
import { ElementRef, AfterViewInit, OnDestroy, EventEmitter } from '@angular/core';
|
||
|
|
export declare class UIChart implements AfterViewInit, OnDestroy {
|
||
|
|
el: ElementRef;
|
||
|
|
type: string;
|
||
|
|
options: any;
|
||
|
|
plugins: any[];
|
||
|
|
width: string;
|
||
|
|
height: string;
|
||
|
|
responsive: boolean;
|
||
|
|
onDataSelect: EventEmitter<any>;
|
||
|
|
initialized: boolean;
|
||
|
|
_data: any;
|
||
|
|
chart: any;
|
||
|
|
constructor(el: ElementRef);
|
||
|
|
data: any;
|
||
|
|
ngAfterViewInit(): void;
|
||
|
|
onCanvasClick(event: any): void;
|
||
|
|
initChart(): void;
|
||
|
|
getCanvas(): any;
|
||
|
|
getBase64Image(): any;
|
||
|
|
generateLegend(): any;
|
||
|
|
refresh(): void;
|
||
|
|
reinit(): void;
|
||
|
|
ngOnDestroy(): void;
|
||
|
|
}
|
||
|
|
export declare class ChartModule {
|
||
|
|
}
|