@mescius/wijmo.angular2legacy.chart.finance.analytics 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,928 @@
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.finance.analytics}
15
+ * Contains Angular 2 components for the <b>wijmo.chart.finance.analytics</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.chart.finance.analytics</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 wjFinanceAnalitics from 'wijmo/wijmo.angular2legacy.chart.finance.analytics';</pre>
21
+ *
22
+ */
23
+ /**
24
+ *
25
+ */
26
+ export declare var ___keepComment: any;
27
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
28
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
29
+ import * as wjcChartFinanceAnalytics from '@grapecity/wijmo.chart.finance.analytics';
30
+ declare var wjFlexChartFibonacciMeta: IWjComponentMeta;
31
+ export { wjFlexChartFibonacciMeta };
32
+ /**
33
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.Fibonacci} class.
34
+ *
35
+ * The <b>wj-flex-chart-fibonacci</b> component must be
36
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
37
+ *
38
+ * Use the <b>wj-flex-chart-fibonacci</b> component to add <b>Fibonacci</b> controls to your
39
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
40
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
41
+ *
42
+ * The <b>WjFlexChartFibonacci</b> component is derived from the <b>Fibonacci</b> class and
43
+ * inherits all its properties, events and methods.
44
+ */
45
+ export declare class WjFlexChartFibonacci extends wjcChartFinanceAnalytics.Fibonacci implements OnInit, OnDestroy, AfterViewInit {
46
+ static readonly meta: IWjComponentMetadata;
47
+ private _wjBehaviour;
48
+ /**
49
+ * Indicates whether the component has been initialized by Angular.
50
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
51
+ */
52
+ isInitialized: boolean;
53
+ /**
54
+ * This event is triggered after the component has been initialized by Angular, that is
55
+ * all bound properties have been assigned and child components (if any) have been initialized.
56
+ */
57
+ initialized: EventEmitter<any>;
58
+ /**
59
+ * Gets or sets a name of a property that this component is assigned to.
60
+ * Default value is 'series'.
61
+ */
62
+ wjProperty: string;
63
+ /**
64
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
65
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
66
+ */
67
+ asyncBindings: boolean;
68
+ /**
69
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
70
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
71
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
72
+ */
73
+ renderingNg: EventEmitter<any>;
74
+ /**
75
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
76
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
77
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
78
+ */
79
+ renderedNg: EventEmitter<any>;
80
+ /**
81
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
82
+ * It's triggered when the property value changes, with the event argument holding the new property value.
83
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
84
+ */
85
+ visibilityChangePC: EventEmitter<any>;
86
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
87
+ /**
88
+ * If you create a custom component inherited from a Wijmo component, you can override this
89
+ * method and perform necessary initializations that you usually do in a class constructor.
90
+ * This method is called in the last line of a Wijmo component constructor and allows you
91
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
92
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
93
+ */
94
+ created(): void;
95
+ ngOnInit(): void;
96
+ ngAfterViewInit(): void;
97
+ ngOnDestroy(): void;
98
+ }
99
+ declare var wjFlexChartFibonacciArcsMeta: IWjComponentMeta;
100
+ export { wjFlexChartFibonacciArcsMeta };
101
+ /**
102
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.FibonacciArcs} class.
103
+ *
104
+ * The <b>wj-flex-chart-fibonacci-arcs</b> component must be
105
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
106
+ *
107
+ * Use the <b>wj-flex-chart-fibonacci-arcs</b> component to add <b>FibonacciArcs</b> controls to your
108
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
109
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
110
+ *
111
+ * The <b>WjFlexChartFibonacciArcs</b> component is derived from the <b>FibonacciArcs</b> class and
112
+ * inherits all its properties, events and methods.
113
+ */
114
+ export declare class WjFlexChartFibonacciArcs extends wjcChartFinanceAnalytics.FibonacciArcs implements OnInit, OnDestroy, AfterViewInit {
115
+ static readonly meta: IWjComponentMetadata;
116
+ private _wjBehaviour;
117
+ /**
118
+ * Indicates whether the component has been initialized by Angular.
119
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
120
+ */
121
+ isInitialized: boolean;
122
+ /**
123
+ * This event is triggered after the component has been initialized by Angular, that is
124
+ * all bound properties have been assigned and child components (if any) have been initialized.
125
+ */
126
+ initialized: EventEmitter<any>;
127
+ /**
128
+ * Gets or sets a name of a property that this component is assigned to.
129
+ * Default value is 'series'.
130
+ */
131
+ wjProperty: string;
132
+ /**
133
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
134
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
135
+ */
136
+ asyncBindings: boolean;
137
+ /**
138
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
139
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
140
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
141
+ */
142
+ renderingNg: EventEmitter<any>;
143
+ /**
144
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
145
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
146
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
147
+ */
148
+ renderedNg: EventEmitter<any>;
149
+ /**
150
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
151
+ * It's triggered when the property value changes, with the event argument holding the new property value.
152
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
153
+ */
154
+ visibilityChangePC: EventEmitter<any>;
155
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
156
+ /**
157
+ * If you create a custom component inherited from a Wijmo component, you can override this
158
+ * method and perform necessary initializations that you usually do in a class constructor.
159
+ * This method is called in the last line of a Wijmo component constructor and allows you
160
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
161
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
162
+ */
163
+ created(): void;
164
+ ngOnInit(): void;
165
+ ngAfterViewInit(): void;
166
+ ngOnDestroy(): void;
167
+ }
168
+ declare var wjFlexChartFibonacciFansMeta: IWjComponentMeta;
169
+ export { wjFlexChartFibonacciFansMeta };
170
+ /**
171
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.FibonacciFans} class.
172
+ *
173
+ * The <b>wj-flex-chart-fibonacci-fans</b> component must be
174
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
175
+ *
176
+ * Use the <b>wj-flex-chart-fibonacci-fans</b> component to add <b>FibonacciFans</b> controls to your
177
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
178
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
179
+ *
180
+ * The <b>WjFlexChartFibonacciFans</b> component is derived from the <b>FibonacciFans</b> class and
181
+ * inherits all its properties, events and methods.
182
+ */
183
+ export declare class WjFlexChartFibonacciFans extends wjcChartFinanceAnalytics.FibonacciFans implements OnInit, OnDestroy, AfterViewInit {
184
+ static readonly meta: IWjComponentMetadata;
185
+ private _wjBehaviour;
186
+ /**
187
+ * Indicates whether the component has been initialized by Angular.
188
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
189
+ */
190
+ isInitialized: boolean;
191
+ /**
192
+ * This event is triggered after the component has been initialized by Angular, that is
193
+ * all bound properties have been assigned and child components (if any) have been initialized.
194
+ */
195
+ initialized: EventEmitter<any>;
196
+ /**
197
+ * Gets or sets a name of a property that this component is assigned to.
198
+ * Default value is 'series'.
199
+ */
200
+ wjProperty: string;
201
+ /**
202
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
203
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
204
+ */
205
+ asyncBindings: boolean;
206
+ /**
207
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
208
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
209
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
210
+ */
211
+ renderingNg: EventEmitter<any>;
212
+ /**
213
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
214
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
215
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
216
+ */
217
+ renderedNg: EventEmitter<any>;
218
+ /**
219
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
220
+ * It's triggered when the property value changes, with the event argument holding the new property value.
221
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
222
+ */
223
+ visibilityChangePC: EventEmitter<any>;
224
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
225
+ /**
226
+ * If you create a custom component inherited from a Wijmo component, you can override this
227
+ * method and perform necessary initializations that you usually do in a class constructor.
228
+ * This method is called in the last line of a Wijmo component constructor and allows you
229
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
230
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
231
+ */
232
+ created(): void;
233
+ ngOnInit(): void;
234
+ ngAfterViewInit(): void;
235
+ ngOnDestroy(): void;
236
+ }
237
+ declare var wjFlexChartFibonacciTimeZonesMeta: IWjComponentMeta;
238
+ export { wjFlexChartFibonacciTimeZonesMeta };
239
+ /**
240
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.FibonacciTimeZones} class.
241
+ *
242
+ * The <b>wj-flex-chart-fibonacci-time-zones</b> component must be
243
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
244
+ *
245
+ * Use the <b>wj-flex-chart-fibonacci-time-zones</b> component to add <b>FibonacciTimeZones</b> controls to your
246
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
247
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
248
+ *
249
+ * The <b>WjFlexChartFibonacciTimeZones</b> component is derived from the <b>FibonacciTimeZones</b> class and
250
+ * inherits all its properties, events and methods.
251
+ */
252
+ export declare class WjFlexChartFibonacciTimeZones extends wjcChartFinanceAnalytics.FibonacciTimeZones implements OnInit, OnDestroy, AfterViewInit {
253
+ static readonly meta: IWjComponentMetadata;
254
+ private _wjBehaviour;
255
+ /**
256
+ * Indicates whether the component has been initialized by Angular.
257
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
258
+ */
259
+ isInitialized: boolean;
260
+ /**
261
+ * This event is triggered after the component has been initialized by Angular, that is
262
+ * all bound properties have been assigned and child components (if any) have been initialized.
263
+ */
264
+ initialized: EventEmitter<any>;
265
+ /**
266
+ * Gets or sets a name of a property that this component is assigned to.
267
+ * Default value is 'series'.
268
+ */
269
+ wjProperty: string;
270
+ /**
271
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
272
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
273
+ */
274
+ asyncBindings: boolean;
275
+ /**
276
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
277
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
278
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
279
+ */
280
+ renderingNg: EventEmitter<any>;
281
+ /**
282
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
283
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
284
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
285
+ */
286
+ renderedNg: EventEmitter<any>;
287
+ /**
288
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
289
+ * It's triggered when the property value changes, with the event argument holding the new property value.
290
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
291
+ */
292
+ visibilityChangePC: EventEmitter<any>;
293
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
294
+ /**
295
+ * If you create a custom component inherited from a Wijmo component, you can override this
296
+ * method and perform necessary initializations that you usually do in a class constructor.
297
+ * This method is called in the last line of a Wijmo component constructor and allows you
298
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
299
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
300
+ */
301
+ created(): void;
302
+ ngOnInit(): void;
303
+ ngAfterViewInit(): void;
304
+ ngOnDestroy(): void;
305
+ }
306
+ declare var wjFlexChartAtrMeta: IWjComponentMeta;
307
+ export { wjFlexChartAtrMeta };
308
+ /**
309
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.ATR} class.
310
+ *
311
+ * The <b>wj-flex-chart-atr</b> component must be
312
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
313
+ *
314
+ * Use the <b>wj-flex-chart-atr</b> component to add <b>ATR</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>WjFlexChartAtr</b> component is derived from the <b>ATR</b> class and
319
+ * inherits all its properties, events and methods.
320
+ */
321
+ export declare class WjFlexChartAtr extends wjcChartFinanceAnalytics.ATR 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 'series'.
337
+ */
338
+ wjProperty: string;
339
+ /**
340
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
341
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
342
+ */
343
+ asyncBindings: boolean;
344
+ /**
345
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
346
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
347
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
348
+ */
349
+ renderingNg: EventEmitter<any>;
350
+ /**
351
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
352
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
353
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
354
+ */
355
+ renderedNg: EventEmitter<any>;
356
+ /**
357
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
358
+ * It's triggered when the property value changes, with the event argument holding the new property value.
359
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
360
+ */
361
+ visibilityChangePC: EventEmitter<any>;
362
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
363
+ /**
364
+ * If you create a custom component inherited from a Wijmo component, you can override this
365
+ * method and perform necessary initializations that you usually do in a class constructor.
366
+ * This method is called in the last line of a Wijmo component constructor and allows you
367
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
368
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
369
+ */
370
+ created(): void;
371
+ ngOnInit(): void;
372
+ ngAfterViewInit(): void;
373
+ ngOnDestroy(): void;
374
+ }
375
+ declare var wjFlexChartCciMeta: IWjComponentMeta;
376
+ export { wjFlexChartCciMeta };
377
+ /**
378
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.CCI} class.
379
+ *
380
+ * The <b>wj-flex-chart-cci</b> component must be
381
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
382
+ *
383
+ * Use the <b>wj-flex-chart-cci</b> component to add <b>CCI</b> controls to your
384
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
385
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
386
+ *
387
+ * The <b>WjFlexChartCci</b> component is derived from the <b>CCI</b> class and
388
+ * inherits all its properties, events and methods.
389
+ */
390
+ export declare class WjFlexChartCci extends wjcChartFinanceAnalytics.CCI implements OnInit, OnDestroy, AfterViewInit {
391
+ static readonly meta: IWjComponentMetadata;
392
+ private _wjBehaviour;
393
+ /**
394
+ * Indicates whether the component has been initialized by Angular.
395
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
396
+ */
397
+ isInitialized: boolean;
398
+ /**
399
+ * This event is triggered after the component has been initialized by Angular, that is
400
+ * all bound properties have been assigned and child components (if any) have been initialized.
401
+ */
402
+ initialized: EventEmitter<any>;
403
+ /**
404
+ * Gets or sets a name of a property that this component is assigned to.
405
+ * Default value is 'series'.
406
+ */
407
+ wjProperty: string;
408
+ /**
409
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
410
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
411
+ */
412
+ asyncBindings: boolean;
413
+ /**
414
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
415
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
416
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
417
+ */
418
+ renderingNg: EventEmitter<any>;
419
+ /**
420
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
421
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
422
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
423
+ */
424
+ renderedNg: EventEmitter<any>;
425
+ /**
426
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
427
+ * It's triggered when the property value changes, with the event argument holding the new property value.
428
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
429
+ */
430
+ visibilityChangePC: EventEmitter<any>;
431
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
432
+ /**
433
+ * If you create a custom component inherited from a Wijmo component, you can override this
434
+ * method and perform necessary initializations that you usually do in a class constructor.
435
+ * This method is called in the last line of a Wijmo component constructor and allows you
436
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
437
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
438
+ */
439
+ created(): void;
440
+ ngOnInit(): void;
441
+ ngAfterViewInit(): void;
442
+ ngOnDestroy(): void;
443
+ }
444
+ declare var wjFlexChartRsiMeta: IWjComponentMeta;
445
+ export { wjFlexChartRsiMeta };
446
+ /**
447
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.RSI} class.
448
+ *
449
+ * The <b>wj-flex-chart-rsi</b> component must be
450
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
451
+ *
452
+ * Use the <b>wj-flex-chart-rsi</b> component to add <b>RSI</b> controls to your
453
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
454
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
455
+ *
456
+ * The <b>WjFlexChartRsi</b> component is derived from the <b>RSI</b> class and
457
+ * inherits all its properties, events and methods.
458
+ */
459
+ export declare class WjFlexChartRsi extends wjcChartFinanceAnalytics.RSI implements OnInit, OnDestroy, AfterViewInit {
460
+ static readonly meta: IWjComponentMetadata;
461
+ private _wjBehaviour;
462
+ /**
463
+ * Indicates whether the component has been initialized by Angular.
464
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
465
+ */
466
+ isInitialized: boolean;
467
+ /**
468
+ * This event is triggered after the component has been initialized by Angular, that is
469
+ * all bound properties have been assigned and child components (if any) have been initialized.
470
+ */
471
+ initialized: EventEmitter<any>;
472
+ /**
473
+ * Gets or sets a name of a property that this component is assigned to.
474
+ * Default value is 'series'.
475
+ */
476
+ wjProperty: string;
477
+ /**
478
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
479
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
480
+ */
481
+ asyncBindings: boolean;
482
+ /**
483
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
484
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
485
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
486
+ */
487
+ renderingNg: EventEmitter<any>;
488
+ /**
489
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
490
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
491
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
492
+ */
493
+ renderedNg: EventEmitter<any>;
494
+ /**
495
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
496
+ * It's triggered when the property value changes, with the event argument holding the new property value.
497
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
498
+ */
499
+ visibilityChangePC: EventEmitter<any>;
500
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
501
+ /**
502
+ * If you create a custom component inherited from a Wijmo component, you can override this
503
+ * method and perform necessary initializations that you usually do in a class constructor.
504
+ * This method is called in the last line of a Wijmo component constructor and allows you
505
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
506
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
507
+ */
508
+ created(): void;
509
+ ngOnInit(): void;
510
+ ngAfterViewInit(): void;
511
+ ngOnDestroy(): void;
512
+ }
513
+ declare var wjFlexChartWilliamsRMeta: IWjComponentMeta;
514
+ export { wjFlexChartWilliamsRMeta };
515
+ /**
516
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.WilliamsR} class.
517
+ *
518
+ * The <b>wj-flex-chart-williams-r</b> component must be
519
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
520
+ *
521
+ * Use the <b>wj-flex-chart-williams-r</b> component to add <b>WilliamsR</b> controls to your
522
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
523
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
524
+ *
525
+ * The <b>WjFlexChartWilliamsR</b> component is derived from the <b>WilliamsR</b> class and
526
+ * inherits all its properties, events and methods.
527
+ */
528
+ export declare class WjFlexChartWilliamsR extends wjcChartFinanceAnalytics.WilliamsR implements OnInit, OnDestroy, AfterViewInit {
529
+ static readonly meta: IWjComponentMetadata;
530
+ private _wjBehaviour;
531
+ /**
532
+ * Indicates whether the component has been initialized by Angular.
533
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
534
+ */
535
+ isInitialized: boolean;
536
+ /**
537
+ * This event is triggered after the component has been initialized by Angular, that is
538
+ * all bound properties have been assigned and child components (if any) have been initialized.
539
+ */
540
+ initialized: EventEmitter<any>;
541
+ /**
542
+ * Gets or sets a name of a property that this component is assigned to.
543
+ * Default value is 'series'.
544
+ */
545
+ wjProperty: string;
546
+ /**
547
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
548
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
549
+ */
550
+ asyncBindings: boolean;
551
+ /**
552
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
553
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
554
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
555
+ */
556
+ renderingNg: EventEmitter<any>;
557
+ /**
558
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
559
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
560
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
561
+ */
562
+ renderedNg: EventEmitter<any>;
563
+ /**
564
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
565
+ * It's triggered when the property value changes, with the event argument holding the new property value.
566
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
567
+ */
568
+ visibilityChangePC: EventEmitter<any>;
569
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
570
+ /**
571
+ * If you create a custom component inherited from a Wijmo component, you can override this
572
+ * method and perform necessary initializations that you usually do in a class constructor.
573
+ * This method is called in the last line of a Wijmo component constructor and allows you
574
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
575
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
576
+ */
577
+ created(): void;
578
+ ngOnInit(): void;
579
+ ngAfterViewInit(): void;
580
+ ngOnDestroy(): void;
581
+ }
582
+ declare var wjFlexChartMacdMeta: IWjComponentMeta;
583
+ export { wjFlexChartMacdMeta };
584
+ /**
585
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.Macd} class.
586
+ *
587
+ * The <b>wj-flex-chart-macd</b> component must be
588
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
589
+ *
590
+ * Use the <b>wj-flex-chart-macd</b> component to add <b>Macd</b> controls to your
591
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
592
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
593
+ *
594
+ * The <b>WjFlexChartMacd</b> component is derived from the <b>Macd</b> class and
595
+ * inherits all its properties, events and methods.
596
+ */
597
+ export declare class WjFlexChartMacd extends wjcChartFinanceAnalytics.Macd implements OnInit, OnDestroy, AfterViewInit {
598
+ static readonly meta: IWjComponentMetadata;
599
+ private _wjBehaviour;
600
+ /**
601
+ * Indicates whether the component has been initialized by Angular.
602
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
603
+ */
604
+ isInitialized: boolean;
605
+ /**
606
+ * This event is triggered after the component has been initialized by Angular, that is
607
+ * all bound properties have been assigned and child components (if any) have been initialized.
608
+ */
609
+ initialized: EventEmitter<any>;
610
+ /**
611
+ * Gets or sets a name of a property that this component is assigned to.
612
+ * Default value is 'series'.
613
+ */
614
+ wjProperty: string;
615
+ /**
616
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
617
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
618
+ */
619
+ asyncBindings: boolean;
620
+ /**
621
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
622
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
623
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
624
+ */
625
+ renderingNg: EventEmitter<any>;
626
+ /**
627
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
628
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
629
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
630
+ */
631
+ renderedNg: EventEmitter<any>;
632
+ /**
633
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
634
+ * It's triggered when the property value changes, with the event argument holding the new property value.
635
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
636
+ */
637
+ visibilityChangePC: EventEmitter<any>;
638
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
639
+ /**
640
+ * If you create a custom component inherited from a Wijmo component, you can override this
641
+ * method and perform necessary initializations that you usually do in a class constructor.
642
+ * This method is called in the last line of a Wijmo component constructor and allows you
643
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
644
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
645
+ */
646
+ created(): void;
647
+ ngOnInit(): void;
648
+ ngAfterViewInit(): void;
649
+ ngOnDestroy(): void;
650
+ }
651
+ declare var wjFlexChartMacdHistogramMeta: IWjComponentMeta;
652
+ export { wjFlexChartMacdHistogramMeta };
653
+ /**
654
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.MacdHistogram} class.
655
+ *
656
+ * The <b>wj-flex-chart-macd-histogram</b> component must be
657
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
658
+ *
659
+ * Use the <b>wj-flex-chart-macd-histogram</b> component to add <b>MacdHistogram</b> controls to your
660
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
661
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
662
+ *
663
+ * The <b>WjFlexChartMacdHistogram</b> component is derived from the <b>MacdHistogram</b> class and
664
+ * inherits all its properties, events and methods.
665
+ */
666
+ export declare class WjFlexChartMacdHistogram extends wjcChartFinanceAnalytics.MacdHistogram implements OnInit, OnDestroy, AfterViewInit {
667
+ static readonly meta: IWjComponentMetadata;
668
+ private _wjBehaviour;
669
+ /**
670
+ * Indicates whether the component has been initialized by Angular.
671
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
672
+ */
673
+ isInitialized: boolean;
674
+ /**
675
+ * This event is triggered after the component has been initialized by Angular, that is
676
+ * all bound properties have been assigned and child components (if any) have been initialized.
677
+ */
678
+ initialized: EventEmitter<any>;
679
+ /**
680
+ * Gets or sets a name of a property that this component is assigned to.
681
+ * Default value is 'series'.
682
+ */
683
+ wjProperty: string;
684
+ /**
685
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
686
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
687
+ */
688
+ asyncBindings: boolean;
689
+ /**
690
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
691
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
692
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
693
+ */
694
+ renderingNg: EventEmitter<any>;
695
+ /**
696
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
697
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
698
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
699
+ */
700
+ renderedNg: EventEmitter<any>;
701
+ /**
702
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
703
+ * It's triggered when the property value changes, with the event argument holding the new property value.
704
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
705
+ */
706
+ visibilityChangePC: EventEmitter<any>;
707
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
708
+ /**
709
+ * If you create a custom component inherited from a Wijmo component, you can override this
710
+ * method and perform necessary initializations that you usually do in a class constructor.
711
+ * This method is called in the last line of a Wijmo component constructor and allows you
712
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
713
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
714
+ */
715
+ created(): void;
716
+ ngOnInit(): void;
717
+ ngAfterViewInit(): void;
718
+ ngOnDestroy(): void;
719
+ }
720
+ declare var wjFlexChartStochasticMeta: IWjComponentMeta;
721
+ export { wjFlexChartStochasticMeta };
722
+ /**
723
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.Stochastic} class.
724
+ *
725
+ * The <b>wj-flex-chart-stochastic</b> component must be
726
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
727
+ *
728
+ * Use the <b>wj-flex-chart-stochastic</b> component to add <b>Stochastic</b> controls to your
729
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
730
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
731
+ *
732
+ * The <b>WjFlexChartStochastic</b> component is derived from the <b>Stochastic</b> class and
733
+ * inherits all its properties, events and methods.
734
+ */
735
+ export declare class WjFlexChartStochastic extends wjcChartFinanceAnalytics.Stochastic implements OnInit, OnDestroy, AfterViewInit {
736
+ static readonly meta: IWjComponentMetadata;
737
+ private _wjBehaviour;
738
+ /**
739
+ * Indicates whether the component has been initialized by Angular.
740
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
741
+ */
742
+ isInitialized: boolean;
743
+ /**
744
+ * This event is triggered after the component has been initialized by Angular, that is
745
+ * all bound properties have been assigned and child components (if any) have been initialized.
746
+ */
747
+ initialized: EventEmitter<any>;
748
+ /**
749
+ * Gets or sets a name of a property that this component is assigned to.
750
+ * Default value is 'series'.
751
+ */
752
+ wjProperty: string;
753
+ /**
754
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
755
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
756
+ */
757
+ asyncBindings: boolean;
758
+ /**
759
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
760
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
761
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
762
+ */
763
+ renderingNg: EventEmitter<any>;
764
+ /**
765
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
766
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
767
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
768
+ */
769
+ renderedNg: EventEmitter<any>;
770
+ /**
771
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
772
+ * It's triggered when the property value changes, with the event argument holding the new property value.
773
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
774
+ */
775
+ visibilityChangePC: EventEmitter<any>;
776
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
777
+ /**
778
+ * If you create a custom component inherited from a Wijmo component, you can override this
779
+ * method and perform necessary initializations that you usually do in a class constructor.
780
+ * This method is called in the last line of a Wijmo component constructor and allows you
781
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
782
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
783
+ */
784
+ created(): void;
785
+ ngOnInit(): void;
786
+ ngAfterViewInit(): void;
787
+ ngOnDestroy(): void;
788
+ }
789
+ declare var wjFlexChartBollingerBandsMeta: IWjComponentMeta;
790
+ export { wjFlexChartBollingerBandsMeta };
791
+ /**
792
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.BollingerBands} class.
793
+ *
794
+ * The <b>wj-flex-chart-bollinger-bands</b> component must be
795
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
796
+ *
797
+ * Use the <b>wj-flex-chart-bollinger-bands</b> component to add <b>BollingerBands</b> controls to your
798
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
799
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
800
+ *
801
+ * The <b>WjFlexChartBollingerBands</b> component is derived from the <b>BollingerBands</b> class and
802
+ * inherits all its properties, events and methods.
803
+ */
804
+ export declare class WjFlexChartBollingerBands extends wjcChartFinanceAnalytics.BollingerBands implements OnInit, OnDestroy, AfterViewInit {
805
+ static readonly meta: IWjComponentMetadata;
806
+ private _wjBehaviour;
807
+ /**
808
+ * Indicates whether the component has been initialized by Angular.
809
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
810
+ */
811
+ isInitialized: boolean;
812
+ /**
813
+ * This event is triggered after the component has been initialized by Angular, that is
814
+ * all bound properties have been assigned and child components (if any) have been initialized.
815
+ */
816
+ initialized: EventEmitter<any>;
817
+ /**
818
+ * Gets or sets a name of a property that this component is assigned to.
819
+ * Default value is 'series'.
820
+ */
821
+ wjProperty: string;
822
+ /**
823
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
824
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
825
+ */
826
+ asyncBindings: boolean;
827
+ /**
828
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
829
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
830
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
831
+ */
832
+ renderingNg: EventEmitter<any>;
833
+ /**
834
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
835
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
836
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
837
+ */
838
+ renderedNg: EventEmitter<any>;
839
+ /**
840
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
841
+ * It's triggered when the property value changes, with the event argument holding the new property value.
842
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
843
+ */
844
+ visibilityChangePC: EventEmitter<any>;
845
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
846
+ /**
847
+ * If you create a custom component inherited from a Wijmo component, you can override this
848
+ * method and perform necessary initializations that you usually do in a class constructor.
849
+ * This method is called in the last line of a Wijmo component constructor and allows you
850
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
851
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
852
+ */
853
+ created(): void;
854
+ ngOnInit(): void;
855
+ ngAfterViewInit(): void;
856
+ ngOnDestroy(): void;
857
+ }
858
+ declare var wjFlexChartEnvelopesMeta: IWjComponentMeta;
859
+ export { wjFlexChartEnvelopesMeta };
860
+ /**
861
+ * Angular 2 component for the {@link wijmo.chart.finance.analytics.Envelopes} class.
862
+ *
863
+ * The <b>wj-flex-chart-envelopes</b> component must be
864
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
865
+ *
866
+ * Use the <b>wj-flex-chart-envelopes</b> component to add <b>Envelopes</b> controls to your
867
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
868
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
869
+ *
870
+ * The <b>WjFlexChartEnvelopes</b> component is derived from the <b>Envelopes</b> class and
871
+ * inherits all its properties, events and methods.
872
+ */
873
+ export declare class WjFlexChartEnvelopes extends wjcChartFinanceAnalytics.Envelopes implements OnInit, OnDestroy, AfterViewInit {
874
+ static readonly meta: IWjComponentMetadata;
875
+ private _wjBehaviour;
876
+ /**
877
+ * Indicates whether the component has been initialized by Angular.
878
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
879
+ */
880
+ isInitialized: boolean;
881
+ /**
882
+ * This event is triggered after the component has been initialized by Angular, that is
883
+ * all bound properties have been assigned and child components (if any) have been initialized.
884
+ */
885
+ initialized: EventEmitter<any>;
886
+ /**
887
+ * Gets or sets a name of a property that this component is assigned to.
888
+ * Default value is 'series'.
889
+ */
890
+ wjProperty: string;
891
+ /**
892
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
893
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
894
+ */
895
+ asyncBindings: boolean;
896
+ /**
897
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
898
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
899
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
900
+ */
901
+ renderingNg: EventEmitter<any>;
902
+ /**
903
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
904
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
905
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
906
+ */
907
+ renderedNg: EventEmitter<any>;
908
+ /**
909
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
910
+ * It's triggered when the property value changes, with the event argument holding the new property value.
911
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
912
+ */
913
+ visibilityChangePC: EventEmitter<any>;
914
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
915
+ /**
916
+ * If you create a custom component inherited from a Wijmo component, you can override this
917
+ * method and perform necessary initializations that you usually do in a class constructor.
918
+ * This method is called in the last line of a Wijmo component constructor and allows you
919
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
920
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
921
+ */
922
+ created(): void;
923
+ ngOnInit(): void;
924
+ ngAfterViewInit(): void;
925
+ ngOnDestroy(): void;
926
+ }
927
+ export declare class WjChartFinanceAnalyticsModule {
928
+ }