@mescius/wijmo.angular2legacy.chart.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,595 @@
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.analytics}
15
+ * Contains Angular 2 components for the <b>wijmo.chart.analytics</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.chart.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 wjAnalitics from 'wijmo/wijmo.angular2legacy.chart.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 wjcChartAnalytics from '@grapecity/wijmo.chart.analytics';
30
+ declare var wjFlexChartTrendLineMeta: IWjComponentMeta;
31
+ export { wjFlexChartTrendLineMeta };
32
+ /**
33
+ * Angular 2 component for the {@link wijmo.chart.analytics.TrendLine} class.
34
+ *
35
+ * The <b>wj-flex-chart-trend-line</b> component must be
36
+ * contained in one of the following components:
37
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
38
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
39
+ *
40
+ * Use the <b>wj-flex-chart-trend-line</b> component to add <b>TrendLine</b> controls to your
41
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
42
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
43
+ *
44
+ * The <b>WjFlexChartTrendLine</b> component is derived from the <b>TrendLine</b> class and
45
+ * inherits all its properties, events and methods.
46
+ */
47
+ export declare class WjFlexChartTrendLine extends wjcChartAnalytics.TrendLine implements OnInit, OnDestroy, AfterViewInit {
48
+ static readonly meta: IWjComponentMetadata;
49
+ private _wjBehaviour;
50
+ /**
51
+ * Indicates whether the component has been initialized by Angular.
52
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
53
+ */
54
+ isInitialized: boolean;
55
+ /**
56
+ * This event is triggered after the component has been initialized by Angular, that is
57
+ * all bound properties have been assigned and child components (if any) have been initialized.
58
+ */
59
+ initialized: EventEmitter<any>;
60
+ /**
61
+ * Gets or sets a name of a property that this component is assigned to.
62
+ * Default value is 'series'.
63
+ */
64
+ wjProperty: string;
65
+ /**
66
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
67
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
68
+ */
69
+ asyncBindings: boolean;
70
+ /**
71
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
72
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
73
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
74
+ */
75
+ renderingNg: EventEmitter<any>;
76
+ /**
77
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
78
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
79
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
80
+ */
81
+ renderedNg: EventEmitter<any>;
82
+ /**
83
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
84
+ * It's triggered when the property value changes, with the event argument holding the new property value.
85
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
86
+ */
87
+ visibilityChangePC: EventEmitter<any>;
88
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
89
+ /**
90
+ * If you create a custom component inherited from a Wijmo component, you can override this
91
+ * method and perform necessary initializations that you usually do in a class constructor.
92
+ * This method is called in the last line of a Wijmo component constructor and allows you
93
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
94
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
95
+ */
96
+ created(): void;
97
+ ngOnInit(): void;
98
+ ngAfterViewInit(): void;
99
+ ngOnDestroy(): void;
100
+ }
101
+ declare var wjFlexChartMovingAverageMeta: IWjComponentMeta;
102
+ export { wjFlexChartMovingAverageMeta };
103
+ /**
104
+ * Angular 2 component for the {@link wijmo.chart.analytics.MovingAverage} class.
105
+ *
106
+ * The <b>wj-flex-chart-moving-average</b> component must be
107
+ * contained in one of the following components:
108
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
109
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
110
+ *
111
+ * Use the <b>wj-flex-chart-moving-average</b> component to add <b>MovingAverage</b> controls to your
112
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
113
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
114
+ *
115
+ * The <b>WjFlexChartMovingAverage</b> component is derived from the <b>MovingAverage</b> class and
116
+ * inherits all its properties, events and methods.
117
+ */
118
+ export declare class WjFlexChartMovingAverage extends wjcChartAnalytics.MovingAverage implements OnInit, OnDestroy, AfterViewInit {
119
+ static readonly meta: IWjComponentMetadata;
120
+ private _wjBehaviour;
121
+ /**
122
+ * Indicates whether the component has been initialized by Angular.
123
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
124
+ */
125
+ isInitialized: boolean;
126
+ /**
127
+ * This event is triggered after the component has been initialized by Angular, that is
128
+ * all bound properties have been assigned and child components (if any) have been initialized.
129
+ */
130
+ initialized: EventEmitter<any>;
131
+ /**
132
+ * Gets or sets a name of a property that this component is assigned to.
133
+ * Default value is 'series'.
134
+ */
135
+ wjProperty: string;
136
+ /**
137
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
138
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
139
+ */
140
+ asyncBindings: boolean;
141
+ /**
142
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</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>rendering</b> Wijmo event name.
145
+ */
146
+ renderingNg: EventEmitter<any>;
147
+ /**
148
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
149
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
150
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
151
+ */
152
+ renderedNg: EventEmitter<any>;
153
+ /**
154
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
155
+ * It's triggered when the property value changes, with the event argument holding the new property value.
156
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
157
+ */
158
+ visibilityChangePC: EventEmitter<any>;
159
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
160
+ /**
161
+ * If you create a custom component inherited from a Wijmo component, you can override this
162
+ * method and perform necessary initializations that you usually do in a class constructor.
163
+ * This method is called in the last line of a Wijmo component constructor and allows you
164
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
165
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
166
+ */
167
+ created(): void;
168
+ ngOnInit(): void;
169
+ ngAfterViewInit(): void;
170
+ ngOnDestroy(): void;
171
+ }
172
+ declare var wjFlexChartYFunctionSeriesMeta: IWjComponentMeta;
173
+ export { wjFlexChartYFunctionSeriesMeta };
174
+ /**
175
+ * Angular 2 component for the {@link wijmo.chart.analytics.YFunctionSeries} class.
176
+ *
177
+ * The <b>wj-flex-chart-y-function-series</b> component must be
178
+ * contained in one of the following components:
179
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
180
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
181
+ *
182
+ * Use the <b>wj-flex-chart-y-function-series</b> component to add <b>YFunctionSeries</b> controls to your
183
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
184
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
185
+ *
186
+ * The <b>WjFlexChartYFunctionSeries</b> component is derived from the <b>YFunctionSeries</b> class and
187
+ * inherits all its properties, events and methods.
188
+ */
189
+ export declare class WjFlexChartYFunctionSeries extends wjcChartAnalytics.YFunctionSeries implements OnInit, OnDestroy, AfterViewInit {
190
+ static readonly meta: IWjComponentMetadata;
191
+ private _wjBehaviour;
192
+ /**
193
+ * Indicates whether the component has been initialized by Angular.
194
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
195
+ */
196
+ isInitialized: boolean;
197
+ /**
198
+ * This event is triggered after the component has been initialized by Angular, that is
199
+ * all bound properties have been assigned and child components (if any) have been initialized.
200
+ */
201
+ initialized: EventEmitter<any>;
202
+ /**
203
+ * Gets or sets a name of a property that this component is assigned to.
204
+ * Default value is 'series'.
205
+ */
206
+ wjProperty: string;
207
+ /**
208
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
209
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
210
+ */
211
+ asyncBindings: boolean;
212
+ /**
213
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</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>rendering</b> Wijmo event name.
216
+ */
217
+ renderingNg: EventEmitter<any>;
218
+ /**
219
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
220
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
221
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
222
+ */
223
+ renderedNg: EventEmitter<any>;
224
+ /**
225
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
226
+ * It's triggered when the property value changes, with the event argument holding the new property value.
227
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
228
+ */
229
+ visibilityChangePC: EventEmitter<any>;
230
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
231
+ /**
232
+ * If you create a custom component inherited from a Wijmo component, you can override this
233
+ * method and perform necessary initializations that you usually do in a class constructor.
234
+ * This method is called in the last line of a Wijmo component constructor and allows you
235
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
236
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
237
+ */
238
+ created(): void;
239
+ ngOnInit(): void;
240
+ ngAfterViewInit(): void;
241
+ ngOnDestroy(): void;
242
+ }
243
+ declare var wjFlexChartParametricFunctionSeriesMeta: IWjComponentMeta;
244
+ export { wjFlexChartParametricFunctionSeriesMeta };
245
+ /**
246
+ * Angular 2 component for the {@link wijmo.chart.analytics.ParametricFunctionSeries} class.
247
+ *
248
+ * The <b>wj-flex-chart-parametric-function-series</b> component must be
249
+ * contained in one of the following components:
250
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
251
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
252
+ *
253
+ * Use the <b>wj-flex-chart-parametric-function-series</b> component to add <b>ParametricFunctionSeries</b> controls to your
254
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
255
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
256
+ *
257
+ * The <b>WjFlexChartParametricFunctionSeries</b> component is derived from the <b>ParametricFunctionSeries</b> class and
258
+ * inherits all its properties, events and methods.
259
+ */
260
+ export declare class WjFlexChartParametricFunctionSeries extends wjcChartAnalytics.ParametricFunctionSeries implements OnInit, OnDestroy, AfterViewInit {
261
+ static readonly meta: IWjComponentMetadata;
262
+ private _wjBehaviour;
263
+ /**
264
+ * Indicates whether the component has been initialized by Angular.
265
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
266
+ */
267
+ isInitialized: boolean;
268
+ /**
269
+ * This event is triggered after the component has been initialized by Angular, that is
270
+ * all bound properties have been assigned and child components (if any) have been initialized.
271
+ */
272
+ initialized: EventEmitter<any>;
273
+ /**
274
+ * Gets or sets a name of a property that this component is assigned to.
275
+ * Default value is 'series'.
276
+ */
277
+ wjProperty: string;
278
+ /**
279
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
280
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
281
+ */
282
+ asyncBindings: boolean;
283
+ /**
284
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
285
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
286
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
287
+ */
288
+ renderingNg: EventEmitter<any>;
289
+ /**
290
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
291
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
292
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
293
+ */
294
+ renderedNg: EventEmitter<any>;
295
+ /**
296
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
297
+ * It's triggered when the property value changes, with the event argument holding the new property value.
298
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
299
+ */
300
+ visibilityChangePC: EventEmitter<any>;
301
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
302
+ /**
303
+ * If you create a custom component inherited from a Wijmo component, you can override this
304
+ * method and perform necessary initializations that you usually do in a class constructor.
305
+ * This method is called in the last line of a Wijmo component constructor and allows you
306
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
307
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
308
+ */
309
+ created(): void;
310
+ ngOnInit(): void;
311
+ ngAfterViewInit(): void;
312
+ ngOnDestroy(): void;
313
+ }
314
+ declare var wjFlexChartWaterfallMeta: IWjComponentMeta;
315
+ export { wjFlexChartWaterfallMeta };
316
+ /**
317
+ * Angular 2 component for the {@link wijmo.chart.analytics.Waterfall} class.
318
+ *
319
+ * The <b>wj-flex-chart-waterfall</b> component must be
320
+ * contained in one of the following components:
321
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
322
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
323
+ *
324
+ * Use the <b>wj-flex-chart-waterfall</b> component to add <b>Waterfall</b> controls to your
325
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
326
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
327
+ *
328
+ * The <b>WjFlexChartWaterfall</b> component is derived from the <b>Waterfall</b> class and
329
+ * inherits all its properties, events and methods.
330
+ */
331
+ export declare class WjFlexChartWaterfall extends wjcChartAnalytics.Waterfall implements OnInit, OnDestroy, AfterViewInit {
332
+ static readonly meta: IWjComponentMetadata;
333
+ private _wjBehaviour;
334
+ /**
335
+ * Indicates whether the component has been initialized by Angular.
336
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
337
+ */
338
+ isInitialized: boolean;
339
+ /**
340
+ * This event is triggered after the component has been initialized by Angular, that is
341
+ * all bound properties have been assigned and child components (if any) have been initialized.
342
+ */
343
+ initialized: EventEmitter<any>;
344
+ /**
345
+ * Gets or sets a name of a property that this component is assigned to.
346
+ * Default value is 'series'.
347
+ */
348
+ wjProperty: string;
349
+ /**
350
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
351
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
352
+ */
353
+ asyncBindings: boolean;
354
+ /**
355
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
356
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
357
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
358
+ */
359
+ renderingNg: EventEmitter<any>;
360
+ /**
361
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
362
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
363
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
364
+ */
365
+ renderedNg: EventEmitter<any>;
366
+ /**
367
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
368
+ * It's triggered when the property value changes, with the event argument holding the new property value.
369
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
370
+ */
371
+ visibilityChangePC: EventEmitter<any>;
372
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
373
+ /**
374
+ * If you create a custom component inherited from a Wijmo component, you can override this
375
+ * method and perform necessary initializations that you usually do in a class constructor.
376
+ * This method is called in the last line of a Wijmo component constructor and allows you
377
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
378
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
379
+ */
380
+ created(): void;
381
+ ngOnInit(): void;
382
+ ngAfterViewInit(): void;
383
+ ngOnDestroy(): void;
384
+ }
385
+ declare var wjFlexChartBoxWhiskerMeta: IWjComponentMeta;
386
+ export { wjFlexChartBoxWhiskerMeta };
387
+ /**
388
+ * Angular 2 component for the {@link wijmo.chart.analytics.BoxWhisker} class.
389
+ *
390
+ * The <b>wj-flex-chart-box-whisker</b> component must be
391
+ * contained in one of the following components:
392
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
393
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
394
+ *
395
+ * Use the <b>wj-flex-chart-box-whisker</b> component to add <b>BoxWhisker</b> controls to your
396
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
397
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
398
+ *
399
+ * The <b>WjFlexChartBoxWhisker</b> component is derived from the <b>BoxWhisker</b> class and
400
+ * inherits all its properties, events and methods.
401
+ */
402
+ export declare class WjFlexChartBoxWhisker extends wjcChartAnalytics.BoxWhisker implements OnInit, OnDestroy, AfterViewInit {
403
+ static readonly meta: IWjComponentMetadata;
404
+ private _wjBehaviour;
405
+ /**
406
+ * Indicates whether the component has been initialized by Angular.
407
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
408
+ */
409
+ isInitialized: boolean;
410
+ /**
411
+ * This event is triggered after the component has been initialized by Angular, that is
412
+ * all bound properties have been assigned and child components (if any) have been initialized.
413
+ */
414
+ initialized: EventEmitter<any>;
415
+ /**
416
+ * Gets or sets a name of a property that this component is assigned to.
417
+ * Default value is 'series'.
418
+ */
419
+ wjProperty: string;
420
+ /**
421
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
422
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
423
+ */
424
+ asyncBindings: boolean;
425
+ /**
426
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
427
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
428
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
429
+ */
430
+ renderingNg: EventEmitter<any>;
431
+ /**
432
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
433
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
434
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
435
+ */
436
+ renderedNg: EventEmitter<any>;
437
+ /**
438
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
439
+ * It's triggered when the property value changes, with the event argument holding the new property value.
440
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
441
+ */
442
+ visibilityChangePC: 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 wjFlexChartErrorBarMeta: IWjComponentMeta;
457
+ export { wjFlexChartErrorBarMeta };
458
+ /**
459
+ * Angular 2 component for the {@link wijmo.chart.analytics.ErrorBar} class.
460
+ *
461
+ * The <b>wj-flex-chart-error-bar</b> component must be
462
+ * contained in a {@link wijmo.angular2legacy.chart.WjFlexChart} component.
463
+ *
464
+ * Use the <b>wj-flex-chart-error-bar</b> component to add <b>ErrorBar</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>WjFlexChartErrorBar</b> component is derived from the <b>ErrorBar</b> class and
469
+ * inherits all its properties, events and methods.
470
+ */
471
+ export declare class WjFlexChartErrorBar extends wjcChartAnalytics.ErrorBar 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 'series'.
487
+ */
488
+ wjProperty: string;
489
+ /**
490
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
491
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
492
+ */
493
+ asyncBindings: boolean;
494
+ /**
495
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
496
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
497
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
498
+ */
499
+ renderingNg: EventEmitter<any>;
500
+ /**
501
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
502
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
503
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
504
+ */
505
+ renderedNg: EventEmitter<any>;
506
+ /**
507
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
508
+ * It's triggered when the property value changes, with the event argument holding the new property value.
509
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
510
+ */
511
+ visibilityChangePC: EventEmitter<any>;
512
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
513
+ /**
514
+ * If you create a custom component inherited from a Wijmo component, you can override this
515
+ * method and perform necessary initializations that you usually do in a class constructor.
516
+ * This method is called in the last line of a Wijmo component constructor and allows you
517
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
518
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
519
+ */
520
+ created(): void;
521
+ ngOnInit(): void;
522
+ ngAfterViewInit(): void;
523
+ ngOnDestroy(): void;
524
+ }
525
+ declare var wjFlexChartBreakEvenMeta: IWjComponentMeta;
526
+ export { wjFlexChartBreakEvenMeta };
527
+ /**
528
+ * Angular 2 component for the {@link wijmo.chart.analytics.BreakEven} class.
529
+ *
530
+ * The <b>wj-flex-chart-break-even</b> component must be
531
+ * contained in a {@link wijmo.angular2legacy.chart.WjFlexChart} component.
532
+ *
533
+ * Use the <b>wj-flex-chart-break-even</b> component to add <b>BreakEven</b> controls to your
534
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
535
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
536
+ *
537
+ * The <b>WjFlexChartBreakEven</b> component is derived from the <b>BreakEven</b> class and
538
+ * inherits all its properties, events and methods.
539
+ */
540
+ export declare class WjFlexChartBreakEven extends wjcChartAnalytics.BreakEven implements OnInit, OnDestroy, AfterViewInit {
541
+ static readonly meta: IWjComponentMetadata;
542
+ private _wjBehaviour;
543
+ /**
544
+ * Indicates whether the component has been initialized by Angular.
545
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
546
+ */
547
+ isInitialized: boolean;
548
+ /**
549
+ * This event is triggered after the component has been initialized by Angular, that is
550
+ * all bound properties have been assigned and child components (if any) have been initialized.
551
+ */
552
+ initialized: EventEmitter<any>;
553
+ /**
554
+ * Gets or sets a name of a property that this component is assigned to.
555
+ * Default value is 'series'.
556
+ */
557
+ wjProperty: string;
558
+ /**
559
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
560
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
561
+ */
562
+ asyncBindings: boolean;
563
+ /**
564
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
565
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
566
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
567
+ */
568
+ renderingNg: EventEmitter<any>;
569
+ /**
570
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
571
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
572
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
573
+ */
574
+ renderedNg: EventEmitter<any>;
575
+ /**
576
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
577
+ * It's triggered when the property value changes, with the event argument holding the new property value.
578
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
579
+ */
580
+ visibilityChangePC: EventEmitter<any>;
581
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
582
+ /**
583
+ * If you create a custom component inherited from a Wijmo component, you can override this
584
+ * method and perform necessary initializations that you usually do in a class constructor.
585
+ * This method is called in the last line of a Wijmo component constructor and allows you
586
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
587
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
588
+ */
589
+ created(): void;
590
+ ngOnInit(): void;
591
+ ngAfterViewInit(): void;
592
+ ngOnDestroy(): void;
593
+ }
594
+ export declare class WjChartAnalyticsModule {
595
+ }
package/index.js ADDED
@@ -0,0 +1,14 @@
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
+ "use strict";var __extends=this&&this.__extends||function(){var extendStatics=function(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)t.hasOwnProperty(r)&&(e[r]=t[r])})(e,t)};return function(e,t){extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}}(),__decorate=this&&this.__decorate||function(e,t,r,i){var a,n=arguments.length,o=n<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,r):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,r,i);else for(var s=e.length-1;s>=0;s--)(a=e[s])&&(o=(n<3?a(o):n>3?a(t,r,o):a(t,r))||o);return n>3&&o&&Object.defineProperty(t,r,o),o},__param=this&&this.__param||function(e,t){return function(r,i){t(r,i,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var r in e)Object.hasOwnProperty.call(e,r)&&(t[r]=e[r]);t.default=e;return t};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),wjcChartAnalytics=__importStar(require("@mescius/wijmo.chart.analytics")),wjFlexChartTrendLineMeta={selector:"wj-flex-chart-trend-line",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","sampleCount","order","fitType"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartTrendLineMeta=wjFlexChartTrendLineMeta;var WjFlexChartTrendLine=function(e){__extends(WjFlexChartTrendLine,e);function WjFlexChartTrendLine(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartTrendLine;WjFlexChartTrendLine.prototype.created=function(){};WjFlexChartTrendLine.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartTrendLine.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartTrendLine.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartTrendLine.meta={outputs:wjFlexChartTrendLineMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartTrendLine=t=__decorate([core_1.Component({selector:wjFlexChartTrendLineMeta.selector,template:wjFlexChartTrendLineMeta.template,inputs:wjFlexChartTrendLineMeta.inputs,outputs:wjFlexChartTrendLineMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartTrendLineMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartTrendLine)}(wjcChartAnalytics.TrendLine);exports.WjFlexChartTrendLine=WjFlexChartTrendLine;var wjFlexChartMovingAverageMeta={selector:"wj-flex-chart-moving-average",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","sampleCount","period","type"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartMovingAverageMeta=wjFlexChartMovingAverageMeta;var WjFlexChartMovingAverage=function(e){__extends(WjFlexChartMovingAverage,e);function WjFlexChartMovingAverage(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartMovingAverage;WjFlexChartMovingAverage.prototype.created=function(){};WjFlexChartMovingAverage.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartMovingAverage.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartMovingAverage.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartMovingAverage.meta={outputs:wjFlexChartMovingAverageMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartMovingAverage=t=__decorate([core_1.Component({selector:wjFlexChartMovingAverageMeta.selector,template:wjFlexChartMovingAverageMeta.template,inputs:wjFlexChartMovingAverageMeta.inputs,outputs:wjFlexChartMovingAverageMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartMovingAverageMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartMovingAverage)}(wjcChartAnalytics.MovingAverage);exports.WjFlexChartMovingAverage=WjFlexChartMovingAverage;var wjFlexChartYFunctionSeriesMeta={selector:"wj-flex-chart-y-function-series",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","sampleCount","min","max","func"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartYFunctionSeriesMeta=wjFlexChartYFunctionSeriesMeta;var WjFlexChartYFunctionSeries=function(e){__extends(WjFlexChartYFunctionSeries,e);function WjFlexChartYFunctionSeries(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartYFunctionSeries;WjFlexChartYFunctionSeries.prototype.created=function(){};WjFlexChartYFunctionSeries.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartYFunctionSeries.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartYFunctionSeries.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartYFunctionSeries.meta={outputs:wjFlexChartYFunctionSeriesMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartYFunctionSeries=t=__decorate([core_1.Component({selector:wjFlexChartYFunctionSeriesMeta.selector,template:wjFlexChartYFunctionSeriesMeta.template,inputs:wjFlexChartYFunctionSeriesMeta.inputs,outputs:wjFlexChartYFunctionSeriesMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartYFunctionSeriesMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartYFunctionSeries)}(wjcChartAnalytics.YFunctionSeries);exports.WjFlexChartYFunctionSeries=WjFlexChartYFunctionSeries;var wjFlexChartParametricFunctionSeriesMeta={selector:"wj-flex-chart-parametric-function-series",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","sampleCount","min","max","func","xFunc","yFunc"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartParametricFunctionSeriesMeta=wjFlexChartParametricFunctionSeriesMeta;var WjFlexChartParametricFunctionSeries=function(e){__extends(WjFlexChartParametricFunctionSeries,e);function WjFlexChartParametricFunctionSeries(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartParametricFunctionSeries;WjFlexChartParametricFunctionSeries.prototype.created=function(){};WjFlexChartParametricFunctionSeries.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartParametricFunctionSeries.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartParametricFunctionSeries.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartParametricFunctionSeries.meta={outputs:wjFlexChartParametricFunctionSeriesMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartParametricFunctionSeries=t=__decorate([core_1.Component({selector:wjFlexChartParametricFunctionSeriesMeta.selector,template:wjFlexChartParametricFunctionSeriesMeta.template,inputs:wjFlexChartParametricFunctionSeriesMeta.inputs,outputs:wjFlexChartParametricFunctionSeriesMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartParametricFunctionSeriesMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartParametricFunctionSeries)}(wjcChartAnalytics.ParametricFunctionSeries);exports.WjFlexChartParametricFunctionSeries=WjFlexChartParametricFunctionSeries;var wjFlexChartWaterfallMeta={selector:"wj-flex-chart-waterfall",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","relativeData","start","startLabel","showTotal","totalLabel","showIntermediateTotal","intermediateTotalPositions","intermediateTotalLabels","connectorLines","styles"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartWaterfallMeta=wjFlexChartWaterfallMeta;var WjFlexChartWaterfall=function(e){__extends(WjFlexChartWaterfall,e);function WjFlexChartWaterfall(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartWaterfall;WjFlexChartWaterfall.prototype.created=function(){};WjFlexChartWaterfall.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartWaterfall.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartWaterfall.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartWaterfall.meta={outputs:wjFlexChartWaterfallMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartWaterfall=t=__decorate([core_1.Component({selector:wjFlexChartWaterfallMeta.selector,template:wjFlexChartWaterfallMeta.template,inputs:wjFlexChartWaterfallMeta.inputs,outputs:wjFlexChartWaterfallMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartWaterfallMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartWaterfall)}(wjcChartAnalytics.Waterfall);exports.WjFlexChartWaterfall=WjFlexChartWaterfall;var wjFlexChartBoxWhiskerMeta={selector:"wj-flex-chart-box-whisker",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","quartileCalculation","groupWidth","gapWidth","showMeanLine","meanLineStyle","showMeanMarker","meanMarkerStyle","showInnerPoints","showOutliers"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartBoxWhiskerMeta=wjFlexChartBoxWhiskerMeta;var WjFlexChartBoxWhisker=function(e){__extends(WjFlexChartBoxWhisker,e);function WjFlexChartBoxWhisker(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartBoxWhisker;WjFlexChartBoxWhisker.prototype.created=function(){};WjFlexChartBoxWhisker.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartBoxWhisker.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartBoxWhisker.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartBoxWhisker.meta={outputs:wjFlexChartBoxWhiskerMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartBoxWhisker=t=__decorate([core_1.Component({selector:wjFlexChartBoxWhiskerMeta.selector,template:wjFlexChartBoxWhiskerMeta.template,inputs:wjFlexChartBoxWhiskerMeta.inputs,outputs:wjFlexChartBoxWhiskerMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartBoxWhiskerMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartBoxWhisker)}(wjcChartAnalytics.BoxWhisker);exports.WjFlexChartBoxWhisker=WjFlexChartBoxWhisker;var wjFlexChartErrorBarMeta={selector:"wj-flex-chart-error-bar",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","chartType","errorBarStyle","value","errorAmount","endStyle","direction"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartErrorBarMeta=wjFlexChartErrorBarMeta;var WjFlexChartErrorBar=function(e){__extends(WjFlexChartErrorBar,e);function WjFlexChartErrorBar(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartErrorBar;WjFlexChartErrorBar.prototype.created=function(){};WjFlexChartErrorBar.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartErrorBar.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartErrorBar.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartErrorBar.meta={outputs:wjFlexChartErrorBarMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartErrorBar=t=__decorate([core_1.Component({selector:wjFlexChartErrorBarMeta.selector,template:wjFlexChartErrorBarMeta.template,inputs:wjFlexChartErrorBarMeta.inputs,outputs:wjFlexChartErrorBarMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartErrorBarMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartErrorBar)}(wjcChartAnalytics.ErrorBar);exports.WjFlexChartErrorBar=WjFlexChartErrorBar;var wjFlexChartBreakEvenMeta={selector:"wj-flex-chart-break-even",template:"",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","fixedCost","variableCost","salesPrice","styles"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFlexChartBreakEvenMeta=wjFlexChartBreakEvenMeta;var WjFlexChartBreakEven=function(e){__extends(WjFlexChartBreakEven,e);function WjFlexChartBreakEven(t,r,i){var a=e.call(this)||this;a.isInitialized=!1;a.wjProperty="series";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,t,r,i);a.created();return a}t=WjFlexChartBreakEven;WjFlexChartBreakEven.prototype.created=function(){};WjFlexChartBreakEven.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartBreakEven.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartBreakEven.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFlexChartBreakEven.meta={outputs:wjFlexChartBreakEvenMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFlexChartBreakEven=t=__decorate([core_1.Component({selector:wjFlexChartBreakEvenMeta.selector,template:wjFlexChartBreakEvenMeta.template,inputs:wjFlexChartBreakEvenMeta.inputs,outputs:wjFlexChartBreakEvenMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFlexChartBreakEvenMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartBreakEven)}(wjcChartAnalytics.BreakEven);exports.WjFlexChartBreakEven=WjFlexChartBreakEven;var moduleExports=[WjFlexChartTrendLine,WjFlexChartMovingAverage,WjFlexChartYFunctionSeries,WjFlexChartParametricFunctionSeries,WjFlexChartWaterfall,WjFlexChartBoxWhisker,WjFlexChartErrorBar,WjFlexChartBreakEven],WjChartAnalyticsModule=function(){function WjChartAnalyticsModule(){}return WjChartAnalyticsModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjChartAnalyticsModule)}();exports.WjChartAnalyticsModule=WjChartAnalyticsModule;