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