@mescius/wijmo.angular2legacy.olap 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,666 @@
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.olap}
15
+ * Contains Angular 2 components for the <b>wijmo.olap</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.olap</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 wjOlap from 'wijmo/wijmo.angular2legacy.olap';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjOlap.WjPivotGrid],
24
+ * template: '&lt;wj-pivot-grid [itemsSource]="data"&gt;&lt;/wj-pivot-grid&gt;',
25
+ * selector: 'my-cmp',
26
+ * })
27
+ * export class MyCmp {
28
+ * data: any[];
29
+ * }</pre>
30
+ *
31
+ */
32
+ /**
33
+ *
34
+ */
35
+ export declare var ___keepComment: any;
36
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
37
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
38
+ import * as wjcOlap from '@grapecity/wijmo.olap';
39
+ declare var wjPivotGridMeta: IWjComponentMeta;
40
+ export { wjPivotGridMeta };
41
+ /**
42
+ * Angular 2 component for the {@link wijmo.olap.PivotGrid} control.
43
+ *
44
+ * Use the <b>wj-pivot-grid</b> component to add <b>PivotGrid</b> controls to your
45
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
46
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
47
+ *
48
+ * The <b>WjPivotGrid</b> component is derived from the <b>PivotGrid</b> control and
49
+ * inherits all its properties, events and methods.
50
+ */
51
+ export declare class WjPivotGrid extends wjcOlap.PivotGrid implements OnInit, OnDestroy, AfterViewInit {
52
+ static readonly meta: IWjComponentMetadata;
53
+ private _wjBehaviour;
54
+ /**
55
+ * Indicates whether the component has been initialized by Angular.
56
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
57
+ */
58
+ isInitialized: boolean;
59
+ /**
60
+ * This event is triggered after the component has been initialized by Angular, that is
61
+ * all bound properties have been assigned and child components (if any) have been initialized.
62
+ */
63
+ initialized: EventEmitter<any>;
64
+ /**
65
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
66
+ * Default value is ''.
67
+ */
68
+ wjModelProperty: string;
69
+ /**
70
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
71
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
72
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
73
+ */
74
+ gotFocusNg: EventEmitter<any>;
75
+ /**
76
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
77
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
78
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
79
+ */
80
+ lostFocusNg: EventEmitter<any>;
81
+ /**
82
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
83
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
84
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
85
+ */
86
+ refreshingNg: EventEmitter<any>;
87
+ /**
88
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
89
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
90
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
91
+ */
92
+ refreshedNg: EventEmitter<any>;
93
+ /**
94
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
95
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
96
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
97
+ */
98
+ invalidInputNg: EventEmitter<any>;
99
+ /**
100
+ * Angular (EventEmitter) version of the Wijmo <b>beginningEdit</b> event for programmatic access.
101
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
102
+ * In template bindings use the conventional <b>beginningEdit</b> Wijmo event name.
103
+ */
104
+ beginningEditNg: EventEmitter<any>;
105
+ /**
106
+ * Angular (EventEmitter) version of the Wijmo <b>cellEditEnded</b> event for programmatic access.
107
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
108
+ * In template bindings use the conventional <b>cellEditEnded</b> Wijmo event name.
109
+ */
110
+ cellEditEndedNg: EventEmitter<any>;
111
+ /**
112
+ * Angular (EventEmitter) version of the Wijmo <b>cellEditEnding</b> event for programmatic access.
113
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
114
+ * In template bindings use the conventional <b>cellEditEnding</b> Wijmo event name.
115
+ */
116
+ cellEditEndingNg: EventEmitter<any>;
117
+ /**
118
+ * Angular (EventEmitter) version of the Wijmo <b>prepareCellForEdit</b> event for programmatic access.
119
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
120
+ * In template bindings use the conventional <b>prepareCellForEdit</b> Wijmo event name.
121
+ */
122
+ prepareCellForEditNg: EventEmitter<any>;
123
+ /**
124
+ * Angular (EventEmitter) version of the Wijmo <b>formatItem</b> event for programmatic access.
125
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
126
+ * In template bindings use the conventional <b>formatItem</b> Wijmo event name.
127
+ */
128
+ formatItemNg: EventEmitter<any>;
129
+ /**
130
+ * Angular (EventEmitter) version of the Wijmo <b>resizingColumn</b> event for programmatic access.
131
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
132
+ * In template bindings use the conventional <b>resizingColumn</b> Wijmo event name.
133
+ */
134
+ resizingColumnNg: EventEmitter<any>;
135
+ /**
136
+ * Angular (EventEmitter) version of the Wijmo <b>resizedColumn</b> event for programmatic access.
137
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
138
+ * In template bindings use the conventional <b>resizedColumn</b> Wijmo event name.
139
+ */
140
+ resizedColumnNg: EventEmitter<any>;
141
+ /**
142
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizingColumn</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>autoSizingColumn</b> Wijmo event name.
145
+ */
146
+ autoSizingColumnNg: EventEmitter<any>;
147
+ /**
148
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizedColumn</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>autoSizedColumn</b> Wijmo event name.
151
+ */
152
+ autoSizedColumnNg: EventEmitter<any>;
153
+ /**
154
+ * Angular (EventEmitter) version of the Wijmo <b>draggingColumn</b> event for programmatic access.
155
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
156
+ * In template bindings use the conventional <b>draggingColumn</b> Wijmo event name.
157
+ */
158
+ draggingColumnNg: EventEmitter<any>;
159
+ /**
160
+ * Angular (EventEmitter) version of the Wijmo <b>draggingColumnOver</b> event for programmatic access.
161
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
162
+ * In template bindings use the conventional <b>draggingColumnOver</b> Wijmo event name.
163
+ */
164
+ draggingColumnOverNg: EventEmitter<any>;
165
+ /**
166
+ * Angular (EventEmitter) version of the Wijmo <b>draggedColumn</b> event for programmatic access.
167
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
168
+ * In template bindings use the conventional <b>draggedColumn</b> Wijmo event name.
169
+ */
170
+ draggedColumnNg: EventEmitter<any>;
171
+ /**
172
+ * Angular (EventEmitter) version of the Wijmo <b>sortingColumn</b> event for programmatic access.
173
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
174
+ * In template bindings use the conventional <b>sortingColumn</b> Wijmo event name.
175
+ */
176
+ sortingColumnNg: EventEmitter<any>;
177
+ /**
178
+ * Angular (EventEmitter) version of the Wijmo <b>sortedColumn</b> event for programmatic access.
179
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
180
+ * In template bindings use the conventional <b>sortedColumn</b> Wijmo event name.
181
+ */
182
+ sortedColumnNg: EventEmitter<any>;
183
+ /**
184
+ * Angular (EventEmitter) version of the Wijmo <b>pinningColumn</b> event for programmatic access.
185
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
186
+ * In template bindings use the conventional <b>pinningColumn</b> Wijmo event name.
187
+ */
188
+ pinningColumnNg: EventEmitter<any>;
189
+ /**
190
+ * Angular (EventEmitter) version of the Wijmo <b>pinnedColumn</b> event for programmatic access.
191
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
192
+ * In template bindings use the conventional <b>pinnedColumn</b> Wijmo event name.
193
+ */
194
+ pinnedColumnNg: EventEmitter<any>;
195
+ /**
196
+ * Angular (EventEmitter) version of the Wijmo <b>resizingRow</b> event for programmatic access.
197
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
198
+ * In template bindings use the conventional <b>resizingRow</b> Wijmo event name.
199
+ */
200
+ resizingRowNg: EventEmitter<any>;
201
+ /**
202
+ * Angular (EventEmitter) version of the Wijmo <b>resizedRow</b> event for programmatic access.
203
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
204
+ * In template bindings use the conventional <b>resizedRow</b> Wijmo event name.
205
+ */
206
+ resizedRowNg: EventEmitter<any>;
207
+ /**
208
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizingRow</b> event for programmatic access.
209
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
210
+ * In template bindings use the conventional <b>autoSizingRow</b> Wijmo event name.
211
+ */
212
+ autoSizingRowNg: EventEmitter<any>;
213
+ /**
214
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizedRow</b> event for programmatic access.
215
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
216
+ * In template bindings use the conventional <b>autoSizedRow</b> Wijmo event name.
217
+ */
218
+ autoSizedRowNg: EventEmitter<any>;
219
+ /**
220
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRow</b> event for programmatic access.
221
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
222
+ * In template bindings use the conventional <b>draggingRow</b> Wijmo event name.
223
+ */
224
+ draggingRowNg: EventEmitter<any>;
225
+ /**
226
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRowOver</b> event for programmatic access.
227
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
228
+ * In template bindings use the conventional <b>draggingRowOver</b> Wijmo event name.
229
+ */
230
+ draggingRowOverNg: EventEmitter<any>;
231
+ /**
232
+ * Angular (EventEmitter) version of the Wijmo <b>draggedRow</b> event for programmatic access.
233
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
234
+ * In template bindings use the conventional <b>draggedRow</b> Wijmo event name.
235
+ */
236
+ draggedRowNg: EventEmitter<any>;
237
+ /**
238
+ * Angular (EventEmitter) version of the Wijmo <b>deletingRow</b> event for programmatic access.
239
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
240
+ * In template bindings use the conventional <b>deletingRow</b> Wijmo event name.
241
+ */
242
+ deletingRowNg: EventEmitter<any>;
243
+ /**
244
+ * Angular (EventEmitter) version of the Wijmo <b>deletedRow</b> event for programmatic access.
245
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
246
+ * In template bindings use the conventional <b>deletedRow</b> Wijmo event name.
247
+ */
248
+ deletedRowNg: EventEmitter<any>;
249
+ /**
250
+ * Angular (EventEmitter) version of the Wijmo <b>loadingRows</b> event for programmatic access.
251
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
252
+ * In template bindings use the conventional <b>loadingRows</b> Wijmo event name.
253
+ */
254
+ loadingRowsNg: EventEmitter<any>;
255
+ /**
256
+ * Angular (EventEmitter) version of the Wijmo <b>loadedRows</b> event for programmatic access.
257
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
258
+ * In template bindings use the conventional <b>loadedRows</b> Wijmo event name.
259
+ */
260
+ loadedRowsNg: EventEmitter<any>;
261
+ /**
262
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditStarting</b> event for programmatic access.
263
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
264
+ * In template bindings use the conventional <b>rowEditStarting</b> Wijmo event name.
265
+ */
266
+ rowEditStartingNg: EventEmitter<any>;
267
+ /**
268
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditStarted</b> event for programmatic access.
269
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
270
+ * In template bindings use the conventional <b>rowEditStarted</b> Wijmo event name.
271
+ */
272
+ rowEditStartedNg: EventEmitter<any>;
273
+ /**
274
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditEnding</b> event for programmatic access.
275
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
276
+ * In template bindings use the conventional <b>rowEditEnding</b> Wijmo event name.
277
+ */
278
+ rowEditEndingNg: EventEmitter<any>;
279
+ /**
280
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditEnded</b> event for programmatic access.
281
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
282
+ * In template bindings use the conventional <b>rowEditEnded</b> Wijmo event name.
283
+ */
284
+ rowEditEndedNg: EventEmitter<any>;
285
+ /**
286
+ * Angular (EventEmitter) version of the Wijmo <b>rowAdded</b> event for programmatic access.
287
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
288
+ * In template bindings use the conventional <b>rowAdded</b> Wijmo event name.
289
+ */
290
+ rowAddedNg: EventEmitter<any>;
291
+ /**
292
+ * Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanging</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>groupCollapsedChanging</b> Wijmo event name.
295
+ */
296
+ groupCollapsedChangingNg: EventEmitter<any>;
297
+ /**
298
+ * Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanged</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>groupCollapsedChanged</b> Wijmo event name.
301
+ */
302
+ groupCollapsedChangedNg: EventEmitter<any>;
303
+ /**
304
+ * Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanging</b> event for programmatic access.
305
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
306
+ * In template bindings use the conventional <b>columnGroupCollapsedChanging</b> Wijmo event name.
307
+ */
308
+ columnGroupCollapsedChangingNg: EventEmitter<any>;
309
+ /**
310
+ * Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanged</b> event for programmatic access.
311
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
312
+ * In template bindings use the conventional <b>columnGroupCollapsedChanged</b> Wijmo event name.
313
+ */
314
+ columnGroupCollapsedChangedNg: EventEmitter<any>;
315
+ /**
316
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
317
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
318
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
319
+ */
320
+ itemsSourceChangingNg: EventEmitter<any>;
321
+ /**
322
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
323
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
324
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
325
+ */
326
+ itemsSourceChangedNg: EventEmitter<any>;
327
+ /**
328
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanging</b> event for programmatic access.
329
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
330
+ * In template bindings use the conventional <b>selectionChanging</b> Wijmo event name.
331
+ */
332
+ selectionChangingNg: EventEmitter<any>;
333
+ /**
334
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
335
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
336
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
337
+ */
338
+ selectionChangedNg: EventEmitter<any>;
339
+ /**
340
+ * Angular (EventEmitter) version of the Wijmo <b>scrollPositionChanged</b> event for programmatic access.
341
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
342
+ * In template bindings use the conventional <b>scrollPositionChanged</b> Wijmo event name.
343
+ */
344
+ scrollPositionChangedNg: EventEmitter<any>;
345
+ /**
346
+ * Angular (EventEmitter) version of the Wijmo <b>updatingView</b> event for programmatic access.
347
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
348
+ * In template bindings use the conventional <b>updatingView</b> Wijmo event name.
349
+ */
350
+ updatingViewNg: EventEmitter<any>;
351
+ /**
352
+ * Angular (EventEmitter) version of the Wijmo <b>updatedView</b> event for programmatic access.
353
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
354
+ * In template bindings use the conventional <b>updatedView</b> Wijmo event name.
355
+ */
356
+ updatedViewNg: EventEmitter<any>;
357
+ /**
358
+ * Angular (EventEmitter) version of the Wijmo <b>updatingLayout</b> event for programmatic access.
359
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
360
+ * In template bindings use the conventional <b>updatingLayout</b> Wijmo event name.
361
+ */
362
+ updatingLayoutNg: EventEmitter<any>;
363
+ /**
364
+ * Angular (EventEmitter) version of the Wijmo <b>updatedLayout</b> event for programmatic access.
365
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
366
+ * In template bindings use the conventional <b>updatedLayout</b> Wijmo event name.
367
+ */
368
+ updatedLayoutNg: EventEmitter<any>;
369
+ /**
370
+ * Angular (EventEmitter) version of the Wijmo <b>pasting</b> event for programmatic access.
371
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
372
+ * In template bindings use the conventional <b>pasting</b> Wijmo event name.
373
+ */
374
+ pastingNg: EventEmitter<any>;
375
+ /**
376
+ * Angular (EventEmitter) version of the Wijmo <b>pasted</b> event for programmatic access.
377
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
378
+ * In template bindings use the conventional <b>pasted</b> Wijmo event name.
379
+ */
380
+ pastedNg: EventEmitter<any>;
381
+ /**
382
+ * Angular (EventEmitter) version of the Wijmo <b>pastingCell</b> event for programmatic access.
383
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
384
+ * In template bindings use the conventional <b>pastingCell</b> Wijmo event name.
385
+ */
386
+ pastingCellNg: EventEmitter<any>;
387
+ /**
388
+ * Angular (EventEmitter) version of the Wijmo <b>pastedCell</b> event for programmatic access.
389
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
390
+ * In template bindings use the conventional <b>pastedCell</b> Wijmo event name.
391
+ */
392
+ pastedCellNg: EventEmitter<any>;
393
+ /**
394
+ * Angular (EventEmitter) version of the Wijmo <b>copying</b> event for programmatic access.
395
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
396
+ * In template bindings use the conventional <b>copying</b> Wijmo event name.
397
+ */
398
+ copyingNg: EventEmitter<any>;
399
+ /**
400
+ * Angular (EventEmitter) version of the Wijmo <b>copied</b> event for programmatic access.
401
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
402
+ * In template bindings use the conventional <b>copied</b> Wijmo event name.
403
+ */
404
+ copiedNg: EventEmitter<any>;
405
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
406
+ /**
407
+ * If you create a custom component inherited from a Wijmo component, you can override this
408
+ * method and perform necessary initializations that you usually do in a class constructor.
409
+ * This method is called in the last line of a Wijmo component constructor and allows you
410
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
411
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
412
+ */
413
+ created(): void;
414
+ ngOnInit(): void;
415
+ ngAfterViewInit(): void;
416
+ ngOnDestroy(): void;
417
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
418
+ }
419
+ declare var wjPivotChartMeta: IWjComponentMeta;
420
+ export { wjPivotChartMeta };
421
+ /**
422
+ * Angular 2 component for the {@link wijmo.olap.PivotChart} control.
423
+ *
424
+ * Use the <b>wj-pivot-chart</b> component to add <b>PivotChart</b> controls to your
425
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
426
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
427
+ *
428
+ * The <b>WjPivotChart</b> component is derived from the <b>PivotChart</b> control and
429
+ * inherits all its properties, events and methods.
430
+ */
431
+ export declare class WjPivotChart extends wjcOlap.PivotChart implements OnInit, OnDestroy, AfterViewInit {
432
+ static readonly meta: IWjComponentMetadata;
433
+ private _wjBehaviour;
434
+ /**
435
+ * Indicates whether the component has been initialized by Angular.
436
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
437
+ */
438
+ isInitialized: boolean;
439
+ /**
440
+ * This event is triggered after the component has been initialized by Angular, that is
441
+ * all bound properties have been assigned and child components (if any) have been initialized.
442
+ */
443
+ initialized: EventEmitter<any>;
444
+ /**
445
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
446
+ * Default value is ''.
447
+ */
448
+ wjModelProperty: string;
449
+ /**
450
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
451
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
452
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
453
+ */
454
+ gotFocusNg: EventEmitter<any>;
455
+ /**
456
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
457
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
458
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
459
+ */
460
+ lostFocusNg: EventEmitter<any>;
461
+ /**
462
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
463
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
464
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
465
+ */
466
+ refreshingNg: EventEmitter<any>;
467
+ /**
468
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
469
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
470
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
471
+ */
472
+ refreshedNg: EventEmitter<any>;
473
+ /**
474
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
475
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
476
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
477
+ */
478
+ invalidInputNg: EventEmitter<any>;
479
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
480
+ /**
481
+ * If you create a custom component inherited from a Wijmo component, you can override this
482
+ * method and perform necessary initializations that you usually do in a class constructor.
483
+ * This method is called in the last line of a Wijmo component constructor and allows you
484
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
485
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
486
+ */
487
+ created(): void;
488
+ ngOnInit(): void;
489
+ ngAfterViewInit(): void;
490
+ ngOnDestroy(): void;
491
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
492
+ }
493
+ declare var wjPivotPanelMeta: IWjComponentMeta;
494
+ export { wjPivotPanelMeta };
495
+ /**
496
+ * Angular 2 component for the {@link wijmo.olap.PivotPanel} control.
497
+ *
498
+ * Use the <b>wj-pivot-panel</b> component to add <b>PivotPanel</b> controls to your
499
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
500
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
501
+ *
502
+ * The <b>WjPivotPanel</b> component is derived from the <b>PivotPanel</b> control and
503
+ * inherits all its properties, events and methods.
504
+ */
505
+ export declare class WjPivotPanel extends wjcOlap.PivotPanel implements OnInit, OnDestroy, AfterViewInit {
506
+ static readonly meta: IWjComponentMetadata;
507
+ private _wjBehaviour;
508
+ /**
509
+ * Indicates whether the component has been initialized by Angular.
510
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
511
+ */
512
+ isInitialized: boolean;
513
+ /**
514
+ * This event is triggered after the component has been initialized by Angular, that is
515
+ * all bound properties have been assigned and child components (if any) have been initialized.
516
+ */
517
+ initialized: EventEmitter<any>;
518
+ /**
519
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
520
+ * Default value is ''.
521
+ */
522
+ wjModelProperty: string;
523
+ /**
524
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
525
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
526
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
527
+ */
528
+ gotFocusNg: EventEmitter<any>;
529
+ /**
530
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
531
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
532
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
533
+ */
534
+ lostFocusNg: EventEmitter<any>;
535
+ /**
536
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
537
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
538
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
539
+ */
540
+ refreshingNg: EventEmitter<any>;
541
+ /**
542
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
543
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
544
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
545
+ */
546
+ refreshedNg: EventEmitter<any>;
547
+ /**
548
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
549
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
550
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
551
+ */
552
+ invalidInputNg: EventEmitter<any>;
553
+ /**
554
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
555
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
556
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
557
+ */
558
+ itemsSourceChangedNg: EventEmitter<any>;
559
+ /**
560
+ * Angular (EventEmitter) version of the Wijmo <b>viewDefinitionChanged</b> event for programmatic access.
561
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
562
+ * In template bindings use the conventional <b>viewDefinitionChanged</b> Wijmo event name.
563
+ */
564
+ viewDefinitionChangedNg: EventEmitter<any>;
565
+ /**
566
+ * Angular (EventEmitter) version of the Wijmo <b>updatingView</b> event for programmatic access.
567
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
568
+ * In template bindings use the conventional <b>updatingView</b> Wijmo event name.
569
+ */
570
+ updatingViewNg: EventEmitter<any>;
571
+ /**
572
+ * Angular (EventEmitter) version of the Wijmo <b>updatedView</b> event for programmatic access.
573
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
574
+ * In template bindings use the conventional <b>updatedView</b> Wijmo event name.
575
+ */
576
+ updatedViewNg: EventEmitter<any>;
577
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
578
+ /**
579
+ * If you create a custom component inherited from a Wijmo component, you can override this
580
+ * method and perform necessary initializations that you usually do in a class constructor.
581
+ * This method is called in the last line of a Wijmo component constructor and allows you
582
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
583
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
584
+ */
585
+ created(): void;
586
+ ngOnInit(): void;
587
+ ngAfterViewInit(): void;
588
+ ngOnDestroy(): void;
589
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
590
+ }
591
+ declare var wjSlicerMeta: IWjComponentMeta;
592
+ export { wjSlicerMeta };
593
+ /**
594
+ * Angular 2 component for the {@link wijmo.olap.Slicer} control.
595
+ *
596
+ * Use the <b>wj-slicer</b> component to add <b>Slicer</b> controls to your
597
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
598
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
599
+ *
600
+ * The <b>WjSlicer</b> component is derived from the <b>Slicer</b> control and
601
+ * inherits all its properties, events and methods.
602
+ */
603
+ export declare class WjSlicer extends wjcOlap.Slicer implements OnInit, OnDestroy, AfterViewInit {
604
+ static readonly meta: IWjComponentMetadata;
605
+ private _wjBehaviour;
606
+ /**
607
+ * Indicates whether the component has been initialized by Angular.
608
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
609
+ */
610
+ isInitialized: boolean;
611
+ /**
612
+ * This event is triggered after the component has been initialized by Angular, that is
613
+ * all bound properties have been assigned and child components (if any) have been initialized.
614
+ */
615
+ initialized: EventEmitter<any>;
616
+ /**
617
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
618
+ * Default value is ''.
619
+ */
620
+ wjModelProperty: string;
621
+ /**
622
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
623
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
624
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
625
+ */
626
+ gotFocusNg: EventEmitter<any>;
627
+ /**
628
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
629
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
630
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
631
+ */
632
+ lostFocusNg: EventEmitter<any>;
633
+ /**
634
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
635
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
636
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
637
+ */
638
+ refreshingNg: EventEmitter<any>;
639
+ /**
640
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
641
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
642
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
643
+ */
644
+ refreshedNg: EventEmitter<any>;
645
+ /**
646
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
647
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
648
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
649
+ */
650
+ invalidInputNg: EventEmitter<any>;
651
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
652
+ /**
653
+ * If you create a custom component inherited from a Wijmo component, you can override this
654
+ * method and perform necessary initializations that you usually do in a class constructor.
655
+ * This method is called in the last line of a Wijmo component constructor and allows you
656
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
657
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
658
+ */
659
+ created(): void;
660
+ ngOnInit(): void;
661
+ ngAfterViewInit(): void;
662
+ ngOnDestroy(): void;
663
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
664
+ }
665
+ export declare class WjOlapModule {
666
+ }