yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
28 lines (27 loc) • 758 B
TypeScript
import { ElementRef, OnDestroy, OnChanges, NgZone, OnInit, ChangeDetectorRef } from '@angular/core';
export declare class G2TagCloudComponent implements OnDestroy, OnChanges, OnInit {
private el;
private cd;
private zone;
color: string;
height: any;
private _height;
padding: number;
data: {
name: string;
value: number;
[key: string]: any;
}[];
autoLabel: any;
private _autoLabel;
node: ElementRef;
chart: any;
initFlag: boolean;
constructor(el: ElementRef, cd: ChangeDetectorRef, zone: NgZone);
private initTagCloud();
renderChart(): void;
uninstall(): void;
ngOnInit(): void;
ngOnChanges(): void;
ngOnDestroy(): void;
}