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