@ngx-performance-ui/ui
Version:
Ngx Performance UI - UI
24 lines (23 loc) • 800 B
TypeScript
import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
import { GoogleChart } from '../../models';
import { LazyLoadScriptService } from '@ngx-performance-ui/core';
export declare class GoogleChartComponent implements AfterViewInit {
private lazyLoadScriptService;
chartType: 'AnnotationChart' | 'AreaChart';
dataTable: any[];
columns: GoogleChart.Column[];
rows: Array<any[]>;
options: GoogleChart.AnnotationOption;
style: {
[key: string]: string | number;
};
containerClasses: string;
drawFn: (_: any) => void;
ready: EventEmitter<void>;
chartContainer: ElementRef;
chart: any;
data: any;
readonly packages: string[];
constructor(lazyLoadScriptService: LazyLoadScriptService);
ngAfterViewInit(): void;
}