@mescius/wijmo.angular2.chart 5.20232.939

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,761 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.angular2.chart}
15
+ * Contains Angular 2 components for the <b>wijmo.chart</b> module.
16
+ *
17
+ * <b>wijmo.angular2.chart</b> is an external TypeScript module that can be imported to your code
18
+ * using its ambient module name. For example:
19
+ *
20
+ * <pre>import * as wjChart from 'wijmo/wijmo.angular2.chart';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjChart.WjFlexChart, wjChart.WjFlexChartSeries],
24
+ * template: `
25
+ * &lt;wj-flex-chart [itemsSource]="data" [bindingX]="'x'"&gt;
26
+ * &lt;wj-flex-chart-series [binding]="'y'"&gt;&lt;/wj-flex-chart-series&gt;
27
+ * &lt;/wj-flex-chart&gt;`,
28
+ * selector: 'my-cmp',
29
+ * })
30
+ * export class MyCmp {
31
+ * data: any[];
32
+ * }</pre>
33
+ *
34
+ */
35
+ /**
36
+ *
37
+ */
38
+ import * as ɵngcc0 from '@angular/core';
39
+ import * as ɵngcc1 from '@angular/common';
40
+ export declare var ___keepComment: any;
41
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
42
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2.directivebase';
43
+ import * as wjcChart from '@grapecity/wijmo.chart';
44
+ declare var wjFlexChartMeta: IWjComponentMeta;
45
+ export { wjFlexChartMeta };
46
+ /**
47
+ * Angular 2 component for the {@link wijmo.chart.FlexChart} control.
48
+ *
49
+ * Use the <b>wj-flex-chart</b> component to add <b>FlexChart</b> controls to your
50
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
51
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
52
+ *
53
+ * The <b>WjFlexChart</b> component is derived from the <b>FlexChart</b> control and
54
+ * inherits all its properties, events and methods.
55
+ *
56
+ * The <b>wj-flex-chart</b> component may contain the following child components:
57
+ * {@link wijmo.angular2.chart.analytics.WjFlexChartTrendLine}
58
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartMovingAverage}
59
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartYFunctionSeries}
60
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartParametricFunctionSeries}
61
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartWaterfall}
62
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartBoxWhisker}
63
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartErrorBar}
64
+ * , {@link wijmo.angular2.chart.analytics.WjFlexChartBreakEven}
65
+ * , {@link wijmo.angular2.chart.animation.WjFlexChartAnimation}
66
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationLayer}
67
+ * , {@link wijmo.angular2.chart.interaction.WjFlexChartRangeSelector}
68
+ * , {@link wijmo.angular2.chart.interaction.WjFlexChartGestures}
69
+ * , {@link wijmo.angular2.chart.WjFlexChartAxis}
70
+ * , {@link wijmo.angular2.chart.WjFlexChartLegend}
71
+ * , {@link wijmo.angular2.chart.WjFlexChartDataLabel}
72
+ * , {@link wijmo.angular2.chart.WjFlexChartSeries}
73
+ * , {@link wijmo.angular2.chart.WjFlexChartLineMarker}
74
+ * and {@link wijmo.angular2.chart.WjFlexChartPlotArea}.
75
+ */
76
+ export declare class WjFlexChart extends wjcChart.FlexChart implements OnInit, OnDestroy, AfterViewInit {
77
+ static readonly meta: IWjComponentMetadata;
78
+ private _wjBehaviour;
79
+ /**
80
+ * Indicates whether the component has been initialized by Angular.
81
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
82
+ */
83
+ isInitialized: boolean;
84
+ /**
85
+ * This event is triggered after the component has been initialized by Angular, that is
86
+ * all bound properties have been assigned and child components (if any) have been initialized.
87
+ */
88
+ initialized: EventEmitter<any>;
89
+ /**
90
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
91
+ * Default value is ''.
92
+ */
93
+ wjModelProperty: string;
94
+ /**
95
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
96
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
97
+ */
98
+ asyncBindings: boolean;
99
+ /**
100
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
101
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
102
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
103
+ */
104
+ gotFocusNg: EventEmitter<any>;
105
+ /**
106
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
107
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
108
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
109
+ */
110
+ lostFocusNg: EventEmitter<any>;
111
+ /**
112
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
113
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
114
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
115
+ */
116
+ refreshingNg: EventEmitter<any>;
117
+ /**
118
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
119
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
120
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
121
+ */
122
+ refreshedNg: EventEmitter<any>;
123
+ /**
124
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
125
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
126
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
127
+ */
128
+ invalidInputNg: EventEmitter<any>;
129
+ /**
130
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
131
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
132
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
133
+ */
134
+ renderingNg: EventEmitter<any>;
135
+ /**
136
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
137
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
138
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
139
+ */
140
+ renderedNg: EventEmitter<any>;
141
+ /**
142
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
143
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
144
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
145
+ */
146
+ selectionChangedNg: EventEmitter<any>;
147
+ /**
148
+ * This event is used to implement two-way binding to the <b>selection</b> property.
149
+ * It's triggered when the property value changes, with the event argument holding the new property value.
150
+ * You can bind handlers to this event in templates using the <b>selectionChange</b> event name.
151
+ */
152
+ selectionChangePC: EventEmitter<any>;
153
+ /**
154
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
155
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
156
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
157
+ */
158
+ itemsSourceChangingNg: EventEmitter<any>;
159
+ /**
160
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
161
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
162
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
163
+ */
164
+ itemsSourceChangedNg: EventEmitter<any>;
165
+ /**
166
+ * Angular (EventEmitter) version of the Wijmo <b>seriesVisibilityChanged</b> event for programmatic access.
167
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
168
+ * In template bindings use the conventional <b>seriesVisibilityChanged</b> Wijmo event name.
169
+ */
170
+ seriesVisibilityChangedNg: EventEmitter<any>;
171
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
172
+ /**
173
+ * If you create a custom component inherited from a Wijmo component, you can override this
174
+ * method and perform necessary initializations that you usually do in a class constructor.
175
+ * This method is called in the last line of a Wijmo component constructor and allows you
176
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
177
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
178
+ */
179
+ created(): void;
180
+ ngOnInit(): void;
181
+ ngAfterViewInit(): void;
182
+ ngOnDestroy(): void;
183
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
184
+ tooltipContent: any;
185
+ labelContent: any;
186
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChart, [null, null, { optional: true; skipSelf: true; }]>;
187
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChart, "wj-flex-chart", never, { "asyncBindings": "asyncBindings"; "wjModelProperty": "wjModelProperty"; "renderEngine": "renderEngine"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "binding": "binding"; "footer": "footer"; "header": "header"; "selectionMode": "selectionMode"; "palette": "palette"; "plotMargin": "plotMargin"; "footerStyle": "footerStyle"; "headerStyle": "headerStyle"; "tooltipContent": "tooltipContent"; "itemsSource": "itemsSource"; "bindingX": "bindingX"; "interpolateNulls": "interpolateNulls"; "legendToggle": "legendToggle"; "symbolSize": "symbolSize"; "options": "options"; "selection": "selection"; "itemFormatter": "itemFormatter"; "labelContent": "labelContent"; "chartType": "chartType"; "rotated": "rotated"; "stacking": "stacking"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "renderingNg": "rendering"; "renderedNg": "rendered"; "selectionChangedNg": "selectionChanged"; "selectionChangePC": "selectionChange"; "itemsSourceChangingNg": "itemsSourceChanging"; "itemsSourceChangedNg": "itemsSourceChanged"; "seriesVisibilityChangedNg": "seriesVisibilityChanged"; }, never, ["*"], false, never>;
188
+ }
189
+ declare var wjFlexPieMeta: IWjComponentMeta;
190
+ export { wjFlexPieMeta };
191
+ /**
192
+ * Angular 2 component for the {@link wijmo.chart.FlexPie} control.
193
+ *
194
+ * Use the <b>wj-flex-pie</b> component to add <b>FlexPie</b> controls to your
195
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
196
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
197
+ *
198
+ * The <b>WjFlexPie</b> component is derived from the <b>FlexPie</b> control and
199
+ * inherits all its properties, events and methods.
200
+ *
201
+ * The <b>wj-flex-pie</b> component may contain the following child components:
202
+ * {@link wijmo.angular2.chart.animation.WjFlexChartAnimation}
203
+ * , {@link wijmo.angular2.chart.WjFlexChartLegend}
204
+ * and {@link wijmo.angular2.chart.WjFlexPieDataLabel}.
205
+ */
206
+ export declare class WjFlexPie extends wjcChart.FlexPie implements OnInit, OnDestroy, AfterViewInit {
207
+ static readonly meta: IWjComponentMetadata;
208
+ private _wjBehaviour;
209
+ /**
210
+ * Indicates whether the component has been initialized by Angular.
211
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
212
+ */
213
+ isInitialized: boolean;
214
+ /**
215
+ * This event is triggered after the component has been initialized by Angular, that is
216
+ * all bound properties have been assigned and child components (if any) have been initialized.
217
+ */
218
+ initialized: EventEmitter<any>;
219
+ /**
220
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
221
+ * Default value is ''.
222
+ */
223
+ wjModelProperty: string;
224
+ /**
225
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
226
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
227
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
228
+ */
229
+ gotFocusNg: EventEmitter<any>;
230
+ /**
231
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
232
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
233
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
234
+ */
235
+ lostFocusNg: EventEmitter<any>;
236
+ /**
237
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
238
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
239
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
240
+ */
241
+ refreshingNg: EventEmitter<any>;
242
+ /**
243
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
244
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
245
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
246
+ */
247
+ refreshedNg: EventEmitter<any>;
248
+ /**
249
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
250
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
251
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
252
+ */
253
+ invalidInputNg: EventEmitter<any>;
254
+ /**
255
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
256
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
257
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
258
+ */
259
+ renderingNg: EventEmitter<any>;
260
+ /**
261
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
262
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
263
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
264
+ */
265
+ renderedNg: EventEmitter<any>;
266
+ /**
267
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
268
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
269
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
270
+ */
271
+ selectionChangedNg: EventEmitter<any>;
272
+ /**
273
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
274
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
275
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
276
+ */
277
+ itemsSourceChangingNg: EventEmitter<any>;
278
+ /**
279
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
280
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
281
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
282
+ */
283
+ itemsSourceChangedNg: EventEmitter<any>;
284
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
285
+ /**
286
+ * If you create a custom component inherited from a Wijmo component, you can override this
287
+ * method and perform necessary initializations that you usually do in a class constructor.
288
+ * This method is called in the last line of a Wijmo component constructor and allows you
289
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
290
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
291
+ */
292
+ created(): void;
293
+ ngOnInit(): void;
294
+ ngAfterViewInit(): void;
295
+ ngOnDestroy(): void;
296
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
297
+ tooltipContent: any;
298
+ labelContent: any;
299
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexPie, [null, null, { optional: true; skipSelf: true; }]>;
300
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexPie, "wj-flex-pie", never, { "wjModelProperty": "wjModelProperty"; "isDisabled": "isDisabled"; "tabOrder": "tabOrder"; "binding": "binding"; "footer": "footer"; "header": "header"; "selectionMode": "selectionMode"; "palette": "palette"; "plotMargin": "plotMargin"; "footerStyle": "footerStyle"; "headerStyle": "headerStyle"; "tooltipContent": "tooltipContent"; "itemsSource": "itemsSource"; "bindingName": "bindingName"; "innerRadius": "innerRadius"; "isAnimated": "isAnimated"; "offset": "offset"; "reversed": "reversed"; "startAngle": "startAngle"; "selectedIndex": "selectedIndex"; "selectedItemPosition": "selectedItemPosition"; "selectedItemOffset": "selectedItemOffset"; "itemFormatter": "itemFormatter"; "labelContent": "labelContent"; "titles": "titles"; "chartsPerLine": "chartsPerLine"; "innerText": "innerText"; "innerTextStyle": "innerTextStyle"; }, { "initialized": "initialized"; "gotFocusNg": "gotFocus"; "lostFocusNg": "lostFocus"; "refreshingNg": "refreshing"; "refreshedNg": "refreshed"; "invalidInputNg": "invalidInput"; "renderingNg": "rendering"; "renderedNg": "rendered"; "selectionChangedNg": "selectionChanged"; "itemsSourceChangingNg": "itemsSourceChanging"; "itemsSourceChangedNg": "itemsSourceChanged"; }, never, ["*"], false, never>;
301
+ }
302
+ declare var wjFlexChartAxisMeta: IWjComponentMeta;
303
+ export { wjFlexChartAxisMeta };
304
+ /**
305
+ * Angular 2 component for the {@link wijmo.chart.Axis} class.
306
+ *
307
+ * The <b>wj-flex-chart-axis</b> component must be
308
+ * contained in one of the following components:
309
+ * {@link wijmo.angular2.chart.WjFlexChart}
310
+ * , {@link wijmo.angular2.chart.WjFlexChartSeries}
311
+ * , {@link wijmo.angular2.chart.finance.WjFinancialChart}
312
+ * or {@link wijmo.angular2.chart.finance.WjFinancialChartSeries}.
313
+ *
314
+ * Use the <b>wj-flex-chart-axis</b> component to add <b>Axis</b> controls to your
315
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
316
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
317
+ *
318
+ * The <b>WjFlexChartAxis</b> component is derived from the <b>Axis</b> class and
319
+ * inherits all its properties, events and methods.
320
+ */
321
+ export declare class WjFlexChartAxis extends wjcChart.Axis implements OnInit, OnDestroy, AfterViewInit {
322
+ static readonly meta: IWjComponentMetadata;
323
+ private _wjBehaviour;
324
+ /**
325
+ * Indicates whether the component has been initialized by Angular.
326
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
327
+ */
328
+ isInitialized: boolean;
329
+ /**
330
+ * This event is triggered after the component has been initialized by Angular, that is
331
+ * all bound properties have been assigned and child components (if any) have been initialized.
332
+ */
333
+ initialized: EventEmitter<any>;
334
+ /**
335
+ * Gets or sets a name of a property that this component is assigned to.
336
+ * Default value is 'axes'.
337
+ */
338
+ wjProperty: string;
339
+ /**
340
+ * Angular (EventEmitter) version of the Wijmo <b>rangeChanged</b> event for programmatic access.
341
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
342
+ * In template bindings use the conventional <b>rangeChanged</b> Wijmo event name.
343
+ */
344
+ rangeChangedNg: EventEmitter<any>;
345
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
346
+ /**
347
+ * If you create a custom component inherited from a Wijmo component, you can override this
348
+ * method and perform necessary initializations that you usually do in a class constructor.
349
+ * This method is called in the last line of a Wijmo component constructor and allows you
350
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
351
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
352
+ */
353
+ created(): void;
354
+ ngOnInit(): void;
355
+ ngAfterViewInit(): void;
356
+ ngOnDestroy(): void;
357
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartAxis, [null, null, { optional: true; skipSelf: true; }]>;
358
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartAxis, "wj-flex-chart-axis", never, { "wjProperty": "wjProperty"; "axisLine": "axisLine"; "format": "format"; "labels": "labels"; "majorGrid": "majorGrid"; "majorTickMarks": "majorTickMarks"; "majorUnit": "majorUnit"; "max": "max"; "min": "min"; "position": "position"; "reversed": "reversed"; "title": "title"; "labelAngle": "labelAngle"; "minorGrid": "minorGrid"; "minorTickMarks": "minorTickMarks"; "minorUnit": "minorUnit"; "origin": "origin"; "logBase": "logBase"; "plotArea": "plotArea"; "labelAlign": "labelAlign"; "name": "name"; "overlappingLabels": "overlappingLabels"; "labelPadding": "labelPadding"; "itemFormatter": "itemFormatter"; "itemsSource": "itemsSource"; "binding": "binding"; "labelMin": "labelMin"; "labelMax": "labelMax"; "groupsOptions": "groupsOptions"; }, { "initialized": "initialized"; "rangeChangedNg": "rangeChanged"; }, never, never, false, never>;
359
+ }
360
+ declare var wjFlexChartLegendMeta: IWjComponentMeta;
361
+ export { wjFlexChartLegendMeta };
362
+ /**
363
+ * Angular 2 component for the {@link wijmo.chart.Legend} class.
364
+ *
365
+ * The <b>wj-flex-chart-legend</b> component must be
366
+ * contained in one of the following components:
367
+ * {@link wijmo.angular2.chart.WjFlexChart}
368
+ * , {@link wijmo.angular2.chart.WjFlexPie}
369
+ * , {@link wijmo.angular2.chart.finance.WjFinancialChart}
370
+ * , {@link wijmo.angular2.chart.radar.WjFlexRadar}
371
+ * , {@link wijmo.angular2.chart.hierarchical.WjSunburst}
372
+ * or {@link wijmo.angular2.chart.map.WjFlexMap}.
373
+ *
374
+ * Use the <b>wj-flex-chart-legend</b> component to add <b>Legend</b> controls to your
375
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
376
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
377
+ *
378
+ * The <b>WjFlexChartLegend</b> component is derived from the <b>Legend</b> class and
379
+ * inherits all its properties, events and methods.
380
+ */
381
+ export declare class WjFlexChartLegend extends wjcChart.Legend implements OnInit, OnDestroy, AfterViewInit {
382
+ static readonly meta: IWjComponentMetadata;
383
+ private _wjBehaviour;
384
+ /**
385
+ * Indicates whether the component has been initialized by Angular.
386
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
387
+ */
388
+ isInitialized: boolean;
389
+ /**
390
+ * This event is triggered after the component has been initialized by Angular, that is
391
+ * all bound properties have been assigned and child components (if any) have been initialized.
392
+ */
393
+ initialized: EventEmitter<any>;
394
+ /**
395
+ * Gets or sets a name of a property that this component is assigned to.
396
+ * Default value is 'legend'.
397
+ */
398
+ wjProperty: string;
399
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
400
+ /**
401
+ * If you create a custom component inherited from a Wijmo component, you can override this
402
+ * method and perform necessary initializations that you usually do in a class constructor.
403
+ * This method is called in the last line of a Wijmo component constructor and allows you
404
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
405
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
406
+ */
407
+ created(): void;
408
+ ngOnInit(): void;
409
+ ngAfterViewInit(): void;
410
+ ngOnDestroy(): void;
411
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartLegend, [null, null, { optional: true; skipSelf: true; }]>;
412
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartLegend, "wj-flex-chart-legend", never, { "wjProperty": "wjProperty"; "orientation": "orientation"; "position": "position"; "title": "title"; "titleAlign": "titleAlign"; "maxSize": "maxSize"; "scrollbar": "scrollbar"; }, { "initialized": "initialized"; }, never, never, false, never>;
413
+ }
414
+ declare var wjFlexChartDataLabelMeta: IWjComponentMeta;
415
+ export { wjFlexChartDataLabelMeta };
416
+ /**
417
+ * Angular 2 component for the {@link wijmo.chart.DataLabel} class.
418
+ *
419
+ * The <b>wj-flex-chart-data-label</b> component must be
420
+ * contained in a {@link wijmo.angular2.chart.WjFlexChart} component.
421
+ *
422
+ * Use the <b>wj-flex-chart-data-label</b> component to add <b>DataLabel</b> controls to your
423
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
424
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
425
+ *
426
+ * The <b>WjFlexChartDataLabel</b> component is derived from the <b>DataLabel</b> class and
427
+ * inherits all its properties, events and methods.
428
+ */
429
+ export declare class WjFlexChartDataLabel extends wjcChart.DataLabel implements OnInit, OnDestroy, AfterViewInit {
430
+ static readonly meta: IWjComponentMetadata;
431
+ private _wjBehaviour;
432
+ /**
433
+ * Indicates whether the component has been initialized by Angular.
434
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
435
+ */
436
+ isInitialized: boolean;
437
+ /**
438
+ * This event is triggered after the component has been initialized by Angular, that is
439
+ * all bound properties have been assigned and child components (if any) have been initialized.
440
+ */
441
+ initialized: EventEmitter<any>;
442
+ /**
443
+ * Gets or sets a name of a property that this component is assigned to.
444
+ * Default value is 'dataLabel'.
445
+ */
446
+ wjProperty: string;
447
+ /**
448
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
449
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
450
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
451
+ */
452
+ renderingNg: EventEmitter<any>;
453
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
454
+ /**
455
+ * If you create a custom component inherited from a Wijmo component, you can override this
456
+ * method and perform necessary initializations that you usually do in a class constructor.
457
+ * This method is called in the last line of a Wijmo component constructor and allows you
458
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
459
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
460
+ */
461
+ created(): void;
462
+ ngOnInit(): void;
463
+ ngAfterViewInit(): void;
464
+ ngOnDestroy(): void;
465
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartDataLabel, [null, null, { optional: true; skipSelf: true; }]>;
466
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartDataLabel, "wj-flex-chart-data-label", never, { "wjProperty": "wjProperty"; "content": "content"; "border": "border"; "offset": "offset"; "connectingLine": "connectingLine"; "position": "position"; }, { "initialized": "initialized"; "renderingNg": "rendering"; }, never, never, false, never>;
467
+ }
468
+ declare var wjFlexPieDataLabelMeta: IWjComponentMeta;
469
+ export { wjFlexPieDataLabelMeta };
470
+ /**
471
+ * Angular 2 component for the {@link wijmo.chart.PieDataLabel} class.
472
+ *
473
+ * The <b>wj-flex-pie-data-label</b> component must be
474
+ * contained in a {@link wijmo.angular2.chart.WjFlexPie} component.
475
+ *
476
+ * Use the <b>wj-flex-pie-data-label</b> component to add <b>PieDataLabel</b> controls to your
477
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
478
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
479
+ *
480
+ * The <b>WjFlexPieDataLabel</b> component is derived from the <b>PieDataLabel</b> class and
481
+ * inherits all its properties, events and methods.
482
+ */
483
+ export declare class WjFlexPieDataLabel extends wjcChart.PieDataLabel implements OnInit, OnDestroy, AfterViewInit {
484
+ static readonly meta: IWjComponentMetadata;
485
+ private _wjBehaviour;
486
+ /**
487
+ * Indicates whether the component has been initialized by Angular.
488
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
489
+ */
490
+ isInitialized: boolean;
491
+ /**
492
+ * This event is triggered after the component has been initialized by Angular, that is
493
+ * all bound properties have been assigned and child components (if any) have been initialized.
494
+ */
495
+ initialized: EventEmitter<any>;
496
+ /**
497
+ * Gets or sets a name of a property that this component is assigned to.
498
+ * Default value is 'dataLabel'.
499
+ */
500
+ wjProperty: string;
501
+ /**
502
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
503
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
504
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
505
+ */
506
+ renderingNg: EventEmitter<any>;
507
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
508
+ /**
509
+ * If you create a custom component inherited from a Wijmo component, you can override this
510
+ * method and perform necessary initializations that you usually do in a class constructor.
511
+ * This method is called in the last line of a Wijmo component constructor and allows you
512
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
513
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
514
+ */
515
+ created(): void;
516
+ ngOnInit(): void;
517
+ ngAfterViewInit(): void;
518
+ ngOnDestroy(): void;
519
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexPieDataLabel, [null, null, { optional: true; skipSelf: true; }]>;
520
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexPieDataLabel, "wj-flex-pie-data-label", never, { "wjProperty": "wjProperty"; "content": "content"; "border": "border"; "offset": "offset"; "connectingLine": "connectingLine"; "position": "position"; }, { "initialized": "initialized"; "renderingNg": "rendering"; }, never, never, false, never>;
521
+ }
522
+ declare var wjFlexChartSeriesMeta: IWjComponentMeta;
523
+ export { wjFlexChartSeriesMeta };
524
+ /**
525
+ * Angular 2 component for the {@link wijmo.chart.Series} class.
526
+ *
527
+ * The <b>wj-flex-chart-series</b> component must be
528
+ * contained in a {@link wijmo.angular2.chart.WjFlexChart} component.
529
+ *
530
+ * Use the <b>wj-flex-chart-series</b> component to add <b>Series</b> controls to your
531
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
532
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
533
+ *
534
+ * The <b>WjFlexChartSeries</b> component is derived from the <b>Series</b> class and
535
+ * inherits all its properties, events and methods.
536
+ *
537
+ * The <b>wj-flex-chart-series</b> component may contain a {@link wijmo.angular2.chart.WjFlexChartAxis} child component.
538
+ */
539
+ export declare class WjFlexChartSeries extends wjcChart.Series implements OnInit, OnDestroy, AfterViewInit {
540
+ static readonly meta: IWjComponentMetadata;
541
+ private _wjBehaviour;
542
+ /**
543
+ * Indicates whether the component has been initialized by Angular.
544
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
545
+ */
546
+ isInitialized: boolean;
547
+ /**
548
+ * This event is triggered after the component has been initialized by Angular, that is
549
+ * all bound properties have been assigned and child components (if any) have been initialized.
550
+ */
551
+ initialized: EventEmitter<any>;
552
+ /**
553
+ * Gets or sets a name of a property that this component is assigned to.
554
+ * Default value is 'series'.
555
+ */
556
+ wjProperty: string;
557
+ /**
558
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
559
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
560
+ */
561
+ asyncBindings: boolean;
562
+ /**
563
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
564
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
565
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
566
+ */
567
+ renderingNg: EventEmitter<any>;
568
+ /**
569
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
570
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
571
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
572
+ */
573
+ renderedNg: EventEmitter<any>;
574
+ /**
575
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
576
+ * It's triggered when the property value changes, with the event argument holding the new property value.
577
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
578
+ */
579
+ visibilityChangePC: EventEmitter<any>;
580
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
581
+ /**
582
+ * If you create a custom component inherited from a Wijmo component, you can override this
583
+ * method and perform necessary initializations that you usually do in a class constructor.
584
+ * This method is called in the last line of a Wijmo component constructor and allows you
585
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
586
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
587
+ */
588
+ created(): void;
589
+ ngOnInit(): void;
590
+ ngAfterViewInit(): void;
591
+ ngOnDestroy(): void;
592
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartSeries, [null, null, { optional: true; skipSelf: true; }]>;
593
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartSeries, "wj-flex-chart-series", never, { "asyncBindings": "asyncBindings"; "wjProperty": "wjProperty"; "axisX": "axisX"; "axisY": "axisY"; "binding": "binding"; "bindingX": "bindingX"; "cssClass": "cssClass"; "name": "name"; "style": "style"; "altStyle": "altStyle"; "symbolMarker": "symbolMarker"; "symbolSize": "symbolSize"; "symbolStyle": "symbolStyle"; "visibility": "visibility"; "itemsSource": "itemsSource"; "interpolateNulls": "interpolateNulls"; "tooltipContent": "tooltipContent"; "itemFormatter": "itemFormatter"; "chartType": "chartType"; }, { "initialized": "initialized"; "renderingNg": "rendering"; "renderedNg": "rendered"; "visibilityChangePC": "visibilityChange"; }, never, ["*"], false, never>;
594
+ }
595
+ declare var wjFlexChartLineMarkerMeta: IWjComponentMeta;
596
+ export { wjFlexChartLineMarkerMeta };
597
+ /**
598
+ * Angular 2 component for the {@link wijmo.chart.LineMarker} class.
599
+ *
600
+ * The <b>wj-flex-line-marker</b> component must be
601
+ * contained in one of the following components:
602
+ * {@link wijmo.angular2.chart.WjFlexChart}
603
+ * or {@link wijmo.angular2.chart.finance.WjFinancialChart}.
604
+ *
605
+ * Use the <b>wj-flex-line-marker</b> component to add <b>LineMarker</b> controls to your
606
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
607
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
608
+ *
609
+ * The <b>WjFlexChartLineMarker</b> component is derived from the <b>LineMarker</b> class and
610
+ * inherits all its properties, events and methods.
611
+ */
612
+ export declare class WjFlexChartLineMarker extends wjcChart.LineMarker implements OnInit, OnDestroy, AfterViewInit {
613
+ static readonly meta: IWjComponentMetadata;
614
+ private _wjBehaviour;
615
+ /**
616
+ * Indicates whether the component has been initialized by Angular.
617
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
618
+ */
619
+ isInitialized: boolean;
620
+ /**
621
+ * This event is triggered after the component has been initialized by Angular, that is
622
+ * all bound properties have been assigned and child components (if any) have been initialized.
623
+ */
624
+ initialized: EventEmitter<any>;
625
+ /**
626
+ * Gets or sets a name of a property that this component is assigned to.
627
+ * Default value is ''.
628
+ */
629
+ wjProperty: string;
630
+ /**
631
+ * Angular (EventEmitter) version of the Wijmo <b>positionChanged</b> event for programmatic access.
632
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
633
+ * In template bindings use the conventional <b>positionChanged</b> Wijmo event name.
634
+ */
635
+ positionChangedNg: EventEmitter<any>;
636
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
637
+ /**
638
+ * If you create a custom component inherited from a Wijmo component, you can override this
639
+ * method and perform necessary initializations that you usually do in a class constructor.
640
+ * This method is called in the last line of a Wijmo component constructor and allows you
641
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
642
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
643
+ */
644
+ created(): void;
645
+ ngOnInit(): void;
646
+ ngAfterViewInit(): void;
647
+ ngOnDestroy(): void;
648
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartLineMarker, [null, null, { optional: true; skipSelf: true; }]>;
649
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartLineMarker, "wj-flex-line-marker", never, { "wjProperty": "wjProperty"; "isVisible": "isVisible"; "seriesIndex": "seriesIndex"; "horizontalPosition": "horizontalPosition"; "content": "content"; "verticalPosition": "verticalPosition"; "alignment": "alignment"; "lines": "lines"; "interaction": "interaction"; "dragLines": "dragLines"; "dragThreshold": "dragThreshold"; "dragContent": "dragContent"; }, { "initialized": "initialized"; "positionChangedNg": "positionChanged"; }, never, never, false, never>;
650
+ }
651
+ declare var wjFlexChartDataPointMeta: IWjComponentMeta;
652
+ export { wjFlexChartDataPointMeta };
653
+ /**
654
+ * Angular 2 component for the {@link wijmo.chart.DataPoint} class.
655
+ *
656
+ * The <b>wj-flex-chart-data-point</b> component must be
657
+ * contained in one of the following components:
658
+ * {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationText}
659
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationEllipse}
660
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationRectangle}
661
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationLine}
662
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationPolygon}
663
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationCircle}
664
+ * , {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationSquare}
665
+ * or {@link wijmo.angular2.chart.annotation.WjFlexChartAnnotationImage}.
666
+ *
667
+ * Use the <b>wj-flex-chart-data-point</b> component to add <b>DataPoint</b> controls to your
668
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
669
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
670
+ *
671
+ * The <b>WjFlexChartDataPoint</b> component is derived from the <b>DataPoint</b> class and
672
+ * inherits all its properties, events and methods.
673
+ */
674
+ export declare class WjFlexChartDataPoint extends wjcChart.DataPoint implements OnInit, OnDestroy, AfterViewInit {
675
+ static readonly meta: IWjComponentMetadata;
676
+ private _wjBehaviour;
677
+ /**
678
+ * Indicates whether the component has been initialized by Angular.
679
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
680
+ */
681
+ isInitialized: boolean;
682
+ /**
683
+ * This event is triggered after the component has been initialized by Angular, that is
684
+ * all bound properties have been assigned and child components (if any) have been initialized.
685
+ */
686
+ initialized: EventEmitter<any>;
687
+ /**
688
+ * Gets or sets a name of a property that this component is assigned to.
689
+ * Default value is ''.
690
+ */
691
+ wjProperty: string;
692
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
693
+ /**
694
+ * If you create a custom component inherited from a Wijmo component, you can override this
695
+ * method and perform necessary initializations that you usually do in a class constructor.
696
+ * This method is called in the last line of a Wijmo component constructor and allows you
697
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
698
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
699
+ */
700
+ created(): void;
701
+ ngOnInit(): void;
702
+ ngAfterViewInit(): void;
703
+ ngOnDestroy(): void;
704
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartDataPoint, [null, null, { optional: true; skipSelf: true; }]>;
705
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartDataPoint, "wj-flex-chart-data-point", never, { "wjProperty": "wjProperty"; "x": "x"; "y": "y"; }, { "initialized": "initialized"; }, never, never, false, never>;
706
+ }
707
+ declare var wjFlexChartPlotAreaMeta: IWjComponentMeta;
708
+ export { wjFlexChartPlotAreaMeta };
709
+ /**
710
+ * Angular 2 component for the {@link wijmo.chart.PlotArea} class.
711
+ *
712
+ * The <b>wj-flex-chart-plot-area</b> component must be
713
+ * contained in one of the following components:
714
+ * {@link wijmo.angular2.chart.WjFlexChart}
715
+ * or {@link wijmo.angular2.chart.finance.WjFinancialChart}.
716
+ *
717
+ * Use the <b>wj-flex-chart-plot-area</b> component to add <b>PlotArea</b> controls to your
718
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
719
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
720
+ *
721
+ * The <b>WjFlexChartPlotArea</b> component is derived from the <b>PlotArea</b> class and
722
+ * inherits all its properties, events and methods.
723
+ */
724
+ export declare class WjFlexChartPlotArea extends wjcChart.PlotArea implements OnInit, OnDestroy, AfterViewInit {
725
+ static readonly meta: IWjComponentMetadata;
726
+ private _wjBehaviour;
727
+ /**
728
+ * Indicates whether the component has been initialized by Angular.
729
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
730
+ */
731
+ isInitialized: boolean;
732
+ /**
733
+ * This event is triggered after the component has been initialized by Angular, that is
734
+ * all bound properties have been assigned and child components (if any) have been initialized.
735
+ */
736
+ initialized: EventEmitter<any>;
737
+ /**
738
+ * Gets or sets a name of a property that this component is assigned to.
739
+ * Default value is 'plotAreas'.
740
+ */
741
+ wjProperty: string;
742
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
743
+ /**
744
+ * If you create a custom component inherited from a Wijmo component, you can override this
745
+ * method and perform necessary initializations that you usually do in a class constructor.
746
+ * This method is called in the last line of a Wijmo component constructor and allows you
747
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
748
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
749
+ */
750
+ created(): void;
751
+ ngOnInit(): void;
752
+ ngAfterViewInit(): void;
753
+ ngOnDestroy(): void;
754
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjFlexChartPlotArea, [null, null, { optional: true; skipSelf: true; }]>;
755
+ static ɵcmp: ɵngcc0.ɵɵComponentDeclaration<WjFlexChartPlotArea, "wj-flex-chart-plot-area", never, { "wjProperty": "wjProperty"; "column": "column"; "height": "height"; "name": "name"; "row": "row"; "style": "style"; "width": "width"; }, { "initialized": "initialized"; }, never, never, false, never>;
756
+ }
757
+ export declare class WjChartModule {
758
+ static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<WjChartModule, never>;
759
+ static ɵmod: ɵngcc0.ɵɵNgModuleDeclaration<WjChartModule, [typeof WjFlexChart, typeof WjFlexPie, typeof WjFlexChartAxis, typeof WjFlexChartLegend, typeof WjFlexChartDataLabel, typeof WjFlexPieDataLabel, typeof WjFlexChartSeries, typeof WjFlexChartLineMarker, typeof WjFlexChartDataPoint, typeof WjFlexChartPlotArea], [typeof ɵngcc1.CommonModule], [typeof WjFlexChart, typeof WjFlexPie, typeof WjFlexChartAxis, typeof WjFlexChartLegend, typeof WjFlexChartDataLabel, typeof WjFlexPieDataLabel, typeof WjFlexChartSeries, typeof WjFlexChartLineMarker, typeof WjFlexChartDataPoint, typeof WjFlexChartPlotArea]>;
760
+ static ɵinj: ɵngcc0.ɵɵInjectorDeclaration<WjChartModule>;
761
+ }