source: trip-planner-front/node_modules/primeng/chart/chart.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 1.4 KB
Line 
1import { ElementRef, AfterViewInit, OnDestroy, EventEmitter } from '@angular/core';
2import * as i0 from "@angular/core";
3import * as i1 from "@angular/common";
4export declare class UIChart implements AfterViewInit, OnDestroy {
5 el: ElementRef;
6 type: string;
7 plugins: any[];
8 width: string;
9 height: string;
10 responsive: boolean;
11 onDataSelect: EventEmitter<any>;
12 initialized: boolean;
13 _data: any;
14 _options: any;
15 chart: any;
16 constructor(el: ElementRef);
17 get data(): any;
18 set data(val: any);
19 get options(): any;
20 set options(val: any);
21 ngAfterViewInit(): void;
22 onCanvasClick(event: any): void;
23 initChart(): void;
24 getCanvas(): any;
25 getBase64Image(): any;
26 generateLegend(): any;
27 refresh(): void;
28 reinit(): void;
29 ngOnDestroy(): void;
30 static ɵfac: i0.ɵɵFactoryDeclaration<UIChart, never>;
31 static ɵcmp: i0.ɵɵComponentDeclaration<UIChart, "p-chart", never, { "type": "type"; "plugins": "plugins"; "width": "width"; "height": "height"; "responsive": "responsive"; "data": "data"; "options": "options"; }, { "onDataSelect": "onDataSelect"; }, never, never>;
32}
33export declare class ChartModule {
34 static ɵfac: i0.ɵɵFactoryDeclaration<ChartModule, never>;
35 static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, [typeof UIChart], [typeof i1.CommonModule], [typeof UIChart]>;
36 static ɵinj: i0.ɵɵInjectorDeclaration<ChartModule>;
37}
Note: See TracBrowser for help on using the repository browser.