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