@syncfusion/ej2-pivotview 19.3.57 → 19.4.42
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +76 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +56 -0
- package/CHANGELOG.md +40 -27
- package/README.md +1 -1
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +2052 -1101
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +2068 -1111
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +22 -22
- package/src/base/engine.d.ts +17 -1
- package/src/base/engine.js +78 -27
- package/src/base/export-util.d.ts +17 -0
- package/src/base/export-util.js +245 -0
- package/src/base/olap/engine.d.ts +7 -0
- package/src/base/olap/engine.js +138 -35
- package/src/base/util.d.ts +0 -9
- package/src/base/util.js +2 -215
- package/src/common/actions/field-list.js +1 -1
- package/src/common/actions/pivot-button.d.ts +5 -8
- package/src/common/actions/pivot-button.js +188 -171
- package/src/common/base/constant.d.ts +186 -0
- package/src/common/base/constant.js +186 -0
- package/src/common/base/css-constant.d.ts +2 -0
- package/src/common/base/css-constant.js +2 -0
- package/src/common/base/enum.d.ts +11 -0
- package/src/common/base/interface.d.ts +272 -2
- package/src/common/calculatedfield/calculated-field.js +108 -93
- package/src/common/conditionalformatting/conditional-formatting.js +8 -2
- package/src/common/grouping-bar/grouping-bar.js +1 -1
- package/src/common/popups/aggregate-menu.js +57 -35
- package/src/common/popups/drillthrough-dialog.js +187 -139
- package/src/common/popups/filter-dialog.d.ts +1 -0
- package/src/common/popups/filter-dialog.js +22 -1
- package/src/common/popups/formatting-dialog.js +4 -0
- package/src/common/popups/grouping.js +2 -1
- package/src/common/popups/toolbar.js +305 -203
- package/src/pivotchart/base/pivotchart.js +36 -15
- package/src/pivotfieldlist/base/field-list-model.d.ts +49 -1
- package/src/pivotfieldlist/base/field-list.d.ts +55 -1
- package/src/pivotfieldlist/base/field-list.js +68 -1
- package/src/pivotfieldlist/renderer/dialog-renderer.js +38 -15
- package/src/pivotfieldlist/renderer/tree-renderer.js +35 -22
- package/src/pivotview/actions/drill-through.js +1 -1
- package/src/pivotview/actions/excel-export.js +10 -11
- package/src/pivotview/actions/pdf-export.js +13 -6
- package/src/pivotview/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +6 -2
- package/src/pivotview/base/pivotview-model.d.ts +46 -1
- package/src/pivotview/base/pivotview.d.ts +56 -2
- package/src/pivotview/base/pivotview.js +288 -107
- package/src/pivotview/model/chartsettings-model.d.ts +2 -2
- package/src/pivotview/model/chartsettings.d.ts +2 -2
- package/src/pivotview/model/chartsettings.js +2 -2
- package/src/pivotview/model/datasourcesettings-model.d.ts +8 -1
- package/src/pivotview/model/datasourcesettings.d.ts +7 -0
- package/src/pivotview/model/datasourcesettings.js +3 -0
- package/src/pivotview/renderer/render.d.ts +2 -1
- package/src/pivotview/renderer/render.js +39 -6
- package/styles/bootstrap-dark.css +145 -118
- package/styles/bootstrap.css +145 -118
- package/styles/bootstrap4.css +144 -95
- package/styles/bootstrap5-dark.css +250 -182
- package/styles/bootstrap5.css +245 -175
- package/styles/fabric-dark.css +147 -117
- package/styles/fabric.css +145 -116
- package/styles/highcontrast-light.css +146 -116
- package/styles/highcontrast.css +148 -118
- package/styles/material-dark.css +138 -111
- package/styles/material.css +138 -111
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +1 -4
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +8 -11
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_fabric-definition.scss +1 -4
- package/styles/pivotfieldlist/_fluent-definition.scss +177 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +1 -4
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +1 -4
- package/styles/pivotfieldlist/_layout.scss +199 -109
- package/styles/pivotfieldlist/_material-dark-definition.scss +1 -4
- package/styles/pivotfieldlist/_material-definition.scss +1 -4
- package/styles/pivotfieldlist/_tailwind-definition.scss +6 -9
- package/styles/pivotfieldlist/_theme.scss +213 -47
- package/styles/pivotfieldlist/bootstrap-dark.css +79 -72
- package/styles/pivotfieldlist/bootstrap.css +79 -72
- package/styles/pivotfieldlist/bootstrap4.css +74 -53
- package/styles/pivotfieldlist/bootstrap5-dark.css +145 -103
- package/styles/pivotfieldlist/bootstrap5.css +145 -103
- package/styles/pivotfieldlist/fabric-dark.css +79 -72
- package/styles/pivotfieldlist/fabric.css +79 -72
- package/styles/pivotfieldlist/highcontrast-light.css +79 -72
- package/styles/pivotfieldlist/highcontrast.css +79 -72
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +2 -2
- package/styles/pivotfieldlist/icons/_fluent.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +2 -2
- package/styles/pivotfieldlist/material-dark.css +74 -67
- package/styles/pivotfieldlist/material.css +74 -67
- package/styles/pivotfieldlist/tailwind-dark.css +168 -95
- package/styles/pivotfieldlist/tailwind.css +170 -97
- package/styles/pivotview/_bootstrap-dark-definition.scss +9 -6
- package/styles/pivotview/_bootstrap-definition.scss +9 -6
- package/styles/pivotview/_bootstrap4-definition.scss +10 -7
- package/styles/pivotview/_bootstrap5-definition.scss +12 -9
- package/styles/pivotview/_fabric-dark-definition.scss +8 -5
- package/styles/pivotview/_fabric-definition.scss +7 -4
- package/styles/pivotview/_fluent-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-definition.scss +8 -5
- package/styles/pivotview/_highcontrast-light-definition.scss +7 -4
- package/styles/pivotview/_layout.scss +119 -64
- package/styles/pivotview/_material-dark-definition.scss +7 -4
- package/styles/pivotview/_material-definition.scss +8 -4
- package/styles/pivotview/_tailwind-definition.scss +8 -5
- package/styles/pivotview/_theme.scss +124 -70
- package/styles/pivotview/bootstrap-dark.css +66 -46
- package/styles/pivotview/bootstrap.css +66 -46
- package/styles/pivotview/bootstrap4.css +70 -42
- package/styles/pivotview/bootstrap5-dark.css +99 -73
- package/styles/pivotview/bootstrap5-dark.scss +0 -1
- package/styles/pivotview/bootstrap5.css +100 -72
- package/styles/pivotview/fabric-dark.css +68 -45
- package/styles/pivotview/fabric.css +66 -44
- package/styles/pivotview/highcontrast-light.css +67 -44
- package/styles/pivotview/highcontrast.css +69 -46
- package/styles/pivotview/icons/_bootstrap4.scss +1 -1
- package/styles/pivotview/icons/_bootstrap5.scss +1 -1
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +1 -1
- package/styles/pivotview/material-dark.css +64 -44
- package/styles/pivotview/material.css +64 -44
- package/styles/pivotview/tailwind-dark.css +106 -58
- package/styles/pivotview/tailwind-dark.scss +0 -1
- package/styles/pivotview/tailwind.css +107 -57
- package/styles/tailwind-dark.css +280 -159
- package/styles/tailwind.css +277 -154
|
@@ -126,6 +126,12 @@ export declare const fieldDragStart: string;
|
|
|
126
126
|
export declare const chartPointClick: string;
|
|
127
127
|
/** @hidden */
|
|
128
128
|
export declare const beforeServiceInvoke: string;
|
|
129
|
+
/** @hidden */
|
|
130
|
+
export declare const actionBegin: string;
|
|
131
|
+
/** @hidden */
|
|
132
|
+
export declare const actionComplete: string;
|
|
133
|
+
/** @hidden */
|
|
134
|
+
export declare const actionFailure: string;
|
|
129
135
|
/**
|
|
130
136
|
* Specifies pivot internal events
|
|
131
137
|
*/
|
|
@@ -155,3 +161,183 @@ export declare const initToolbar: string;
|
|
|
155
161
|
export declare const initFormatting: string;
|
|
156
162
|
/** @hidden */
|
|
157
163
|
export declare const initGrouping: string;
|
|
164
|
+
/**
|
|
165
|
+
* Specifies action names of actionBegin events
|
|
166
|
+
*/
|
|
167
|
+
/** @hidden */
|
|
168
|
+
export declare const sortValue: string;
|
|
169
|
+
/** @hidden */
|
|
170
|
+
export declare const drillUp: string;
|
|
171
|
+
/** @hidden */
|
|
172
|
+
export declare const drillDown: string;
|
|
173
|
+
/** @hidden */
|
|
174
|
+
export declare const addNewReport: string;
|
|
175
|
+
/** @hidden */
|
|
176
|
+
export declare const saveCurrentReport: string;
|
|
177
|
+
/** @hidden */
|
|
178
|
+
export declare const saveAsCurrentReport: string;
|
|
179
|
+
/** @hidden */
|
|
180
|
+
export declare const renameCurrentReport: string;
|
|
181
|
+
/** @hidden */
|
|
182
|
+
export declare const removeCurrentReport: string;
|
|
183
|
+
/** @hidden */
|
|
184
|
+
export declare const loadReports: string;
|
|
185
|
+
/** @hidden */
|
|
186
|
+
export declare const openConditionalFormatting: string;
|
|
187
|
+
/** @hidden */
|
|
188
|
+
export declare const openNumberFormatting: string;
|
|
189
|
+
/** @hidden */
|
|
190
|
+
export declare const MdxQuery: string;
|
|
191
|
+
/** @hidden */
|
|
192
|
+
export declare const showFieldList: string;
|
|
193
|
+
/** @hidden */
|
|
194
|
+
export declare const tableView: string;
|
|
195
|
+
/** @hidden */
|
|
196
|
+
export declare const chartView: string;
|
|
197
|
+
/** @hidden */
|
|
198
|
+
export declare const multipleAxis: string;
|
|
199
|
+
/** @hidden */
|
|
200
|
+
export declare const showLegend: string;
|
|
201
|
+
/** @hidden */
|
|
202
|
+
export declare const pdfExport: string;
|
|
203
|
+
/** @hidden */
|
|
204
|
+
export declare const pngExport: string;
|
|
205
|
+
/** @hidden */
|
|
206
|
+
export declare const excelExport: string;
|
|
207
|
+
/** @hidden */
|
|
208
|
+
export declare const csvExport: string;
|
|
209
|
+
/** @hidden */
|
|
210
|
+
export declare const jpegExport: string;
|
|
211
|
+
/** @hidden */
|
|
212
|
+
export declare const svgExport: string;
|
|
213
|
+
/** @hidden */
|
|
214
|
+
export declare const hideSubTotals: string;
|
|
215
|
+
/** @hidden */
|
|
216
|
+
export declare const subTotalsRow: string;
|
|
217
|
+
/** @hidden */
|
|
218
|
+
export declare const subTotalsColumn: string;
|
|
219
|
+
/** @hidden */
|
|
220
|
+
export declare const showSubTotals: string;
|
|
221
|
+
/** @hidden */
|
|
222
|
+
export declare const hideGrandTotals: string;
|
|
223
|
+
/** @hidden */
|
|
224
|
+
export declare const grandTotalsRow: string;
|
|
225
|
+
/** @hidden */
|
|
226
|
+
export declare const grandTotalsColumn: string;
|
|
227
|
+
/** @hidden */
|
|
228
|
+
export declare const showGrandTotals: string;
|
|
229
|
+
/** @hidden */
|
|
230
|
+
export declare const numberFormattingMenu: string;
|
|
231
|
+
/** @hidden */
|
|
232
|
+
export declare const conditionalFormattingMenu: string;
|
|
233
|
+
/** @hidden */
|
|
234
|
+
export declare const reportChange: string;
|
|
235
|
+
/** @hidden */
|
|
236
|
+
export declare const sortFieldTree: string;
|
|
237
|
+
/** @hidden */
|
|
238
|
+
export declare const editCalculatedField: string;
|
|
239
|
+
/** @hidden */
|
|
240
|
+
export declare const sortField: string;
|
|
241
|
+
/** @hidden */
|
|
242
|
+
export declare const filterField: string;
|
|
243
|
+
/** @hidden */
|
|
244
|
+
export declare const removeField: string;
|
|
245
|
+
/** @hidden */
|
|
246
|
+
export declare const openCalculatedField: string;
|
|
247
|
+
/** @hidden */
|
|
248
|
+
export declare const editRecord: string;
|
|
249
|
+
/** @hidden */
|
|
250
|
+
export declare const saveEditedRecords: string;
|
|
251
|
+
/** @hidden */
|
|
252
|
+
export declare const addNewRecord: string;
|
|
253
|
+
/** @hidden */
|
|
254
|
+
export declare const removeRecord: string;
|
|
255
|
+
/** @hidden */
|
|
256
|
+
export declare const aggregateField: string;
|
|
257
|
+
/** @hidden */
|
|
258
|
+
export declare const contextMenuCalculatedField: string;
|
|
259
|
+
/** @hidden */
|
|
260
|
+
export declare const windowResize: string;
|
|
261
|
+
/**
|
|
262
|
+
* Specifies action names of actionComplete events
|
|
263
|
+
*/
|
|
264
|
+
/** @hidden */
|
|
265
|
+
export declare const calculatedFieldApplied: string;
|
|
266
|
+
/** @hidden */
|
|
267
|
+
export declare const editedRecordsSaved: string;
|
|
268
|
+
/** @hidden */
|
|
269
|
+
export declare const newRecordAdded: string;
|
|
270
|
+
/** @hidden */
|
|
271
|
+
export declare const recordRemoved: string;
|
|
272
|
+
/** @hidden */
|
|
273
|
+
export declare const closeFieldlist: string;
|
|
274
|
+
/** @hidden */
|
|
275
|
+
export declare const fieldTreeSorted: string;
|
|
276
|
+
/** @hidden */
|
|
277
|
+
export declare const reportSaved: string;
|
|
278
|
+
/** @hidden */
|
|
279
|
+
export declare const newReportAdded: string;
|
|
280
|
+
/** @hidden */
|
|
281
|
+
export declare const reportReSaved: string;
|
|
282
|
+
/** @hidden */
|
|
283
|
+
export declare const reportRenamed: string;
|
|
284
|
+
/** @hidden */
|
|
285
|
+
export declare const reportRemoved: string;
|
|
286
|
+
/** @hidden */
|
|
287
|
+
export declare const excelExported: string;
|
|
288
|
+
/** @hidden */
|
|
289
|
+
export declare const csvExported: string;
|
|
290
|
+
/** @hidden */
|
|
291
|
+
export declare const pdfExported: string;
|
|
292
|
+
/** @hidden */
|
|
293
|
+
export declare const pngExported: string;
|
|
294
|
+
/** @hidden */
|
|
295
|
+
export declare const jpegExported: string;
|
|
296
|
+
/** @hidden */
|
|
297
|
+
export declare const svgExported: string;
|
|
298
|
+
/** @hidden */
|
|
299
|
+
export declare const conditionallyFormatted: string;
|
|
300
|
+
/** @hidden */
|
|
301
|
+
export declare const numberFormatted: string;
|
|
302
|
+
/** @hidden */
|
|
303
|
+
export declare const tableViewed: string;
|
|
304
|
+
/** @hidden */
|
|
305
|
+
export declare const chartViewed: string;
|
|
306
|
+
/** @hidden */
|
|
307
|
+
export declare const subTotalsHidden: string;
|
|
308
|
+
/** @hidden */
|
|
309
|
+
export declare const subTotalsRowShown: string;
|
|
310
|
+
/** @hidden */
|
|
311
|
+
export declare const subTotalsColumnShown: string;
|
|
312
|
+
/** @hidden */
|
|
313
|
+
export declare const subTotalsShown: string;
|
|
314
|
+
/** @hidden */
|
|
315
|
+
export declare const grandTotalsHidden: string;
|
|
316
|
+
/** @hidden */
|
|
317
|
+
export declare const grandTotalsRowShown: string;
|
|
318
|
+
/** @hidden */
|
|
319
|
+
export declare const grandTotalsColumnShown: string;
|
|
320
|
+
/** @hidden */
|
|
321
|
+
export declare const grandTotalsShown: string;
|
|
322
|
+
/** @hidden */
|
|
323
|
+
export declare const valueSorted: string;
|
|
324
|
+
/** @hidden */
|
|
325
|
+
export declare const calculatedFieldEdited: string;
|
|
326
|
+
/** @hidden */
|
|
327
|
+
export declare const fieldSorted: string;
|
|
328
|
+
/** @hidden */
|
|
329
|
+
export declare const fieldFiltered: string;
|
|
330
|
+
/** @hidden */
|
|
331
|
+
export declare const fieldRemoved: string;
|
|
332
|
+
/** @hidden */
|
|
333
|
+
export declare const fieldAggregated: string;
|
|
334
|
+
/** @hidden */
|
|
335
|
+
export declare const recordEdited: string;
|
|
336
|
+
/** @hidden */
|
|
337
|
+
export declare const reportChanged: string;
|
|
338
|
+
/** @hidden */
|
|
339
|
+
export declare const windowResized: string;
|
|
340
|
+
/** @hidden */
|
|
341
|
+
export declare const recordUpdated: string;
|
|
342
|
+
/** @hidden */
|
|
343
|
+
export declare const drillThroughClosed: string;
|
|
@@ -126,6 +126,12 @@ export var fieldDragStart = 'fieldDragStart';
|
|
|
126
126
|
export var chartPointClick = 'chartPointClick';
|
|
127
127
|
/** @hidden */
|
|
128
128
|
export var beforeServiceInvoke = 'beforeServiceInvoke';
|
|
129
|
+
/** @hidden */
|
|
130
|
+
export var actionBegin = 'actionBegin';
|
|
131
|
+
/** @hidden */
|
|
132
|
+
export var actionComplete = 'actionComplete';
|
|
133
|
+
/** @hidden */
|
|
134
|
+
export var actionFailure = 'actionFailure';
|
|
129
135
|
/**
|
|
130
136
|
* Specifies pivot internal events
|
|
131
137
|
*/
|
|
@@ -155,3 +161,183 @@ export var initToolbar = 'init-toolbar';
|
|
|
155
161
|
export var initFormatting = 'init-formatting';
|
|
156
162
|
/** @hidden */
|
|
157
163
|
export var initGrouping = 'init-grouping';
|
|
164
|
+
/**
|
|
165
|
+
* Specifies action names of actionBegin events
|
|
166
|
+
*/
|
|
167
|
+
/** @hidden */
|
|
168
|
+
export var sortValue = 'Sort value';
|
|
169
|
+
/** @hidden */
|
|
170
|
+
export var drillUp = 'Drill up';
|
|
171
|
+
/** @hidden */
|
|
172
|
+
export var drillDown = 'Drill down';
|
|
173
|
+
/** @hidden */
|
|
174
|
+
export var addNewReport = 'Add new report';
|
|
175
|
+
/** @hidden */
|
|
176
|
+
export var saveCurrentReport = 'Save current report';
|
|
177
|
+
/** @hidden */
|
|
178
|
+
export var saveAsCurrentReport = 'Save as current report';
|
|
179
|
+
/** @hidden */
|
|
180
|
+
export var renameCurrentReport = 'Rename current report';
|
|
181
|
+
/** @hidden */
|
|
182
|
+
export var removeCurrentReport = 'Remove current report';
|
|
183
|
+
/** @hidden */
|
|
184
|
+
export var loadReports = 'Load report';
|
|
185
|
+
/** @hidden */
|
|
186
|
+
export var openConditionalFormatting = 'Open conditional formatting dialog';
|
|
187
|
+
/** @hidden */
|
|
188
|
+
export var openNumberFormatting = 'Open number formatting dialog';
|
|
189
|
+
/** @hidden */
|
|
190
|
+
export var MdxQuery = 'MdxQuery';
|
|
191
|
+
/** @hidden */
|
|
192
|
+
export var showFieldList = 'Open field list';
|
|
193
|
+
/** @hidden */
|
|
194
|
+
export var tableView = 'Show table view';
|
|
195
|
+
/** @hidden */
|
|
196
|
+
export var chartView = 'Show chart view';
|
|
197
|
+
/** @hidden */
|
|
198
|
+
export var multipleAxis = 'Multiple Axis';
|
|
199
|
+
/** @hidden */
|
|
200
|
+
export var showLegend = 'Show legend';
|
|
201
|
+
/** @hidden */
|
|
202
|
+
export var pdfExport = 'PDF export';
|
|
203
|
+
/** @hidden */
|
|
204
|
+
export var pngExport = 'PNG export';
|
|
205
|
+
/** @hidden */
|
|
206
|
+
export var excelExport = 'Excel export';
|
|
207
|
+
/** @hidden */
|
|
208
|
+
export var csvExport = 'CSV export';
|
|
209
|
+
/** @hidden */
|
|
210
|
+
export var jpegExport = 'JPEG export';
|
|
211
|
+
/** @hidden */
|
|
212
|
+
export var svgExport = 'SVG export';
|
|
213
|
+
/** @hidden */
|
|
214
|
+
export var hideSubTotals = 'Hide sub-totals';
|
|
215
|
+
/** @hidden */
|
|
216
|
+
export var subTotalsRow = 'Show row sub-totals';
|
|
217
|
+
/** @hidden */
|
|
218
|
+
export var subTotalsColumn = 'Show column sub-totals';
|
|
219
|
+
/** @hidden */
|
|
220
|
+
export var showSubTotals = 'Show sub-totals';
|
|
221
|
+
/** @hidden */
|
|
222
|
+
export var hideGrandTotals = 'Hide grand totals';
|
|
223
|
+
/** @hidden */
|
|
224
|
+
export var grandTotalsRow = 'Show row grand totals';
|
|
225
|
+
/** @hidden */
|
|
226
|
+
export var grandTotalsColumn = 'Show column grand totals';
|
|
227
|
+
/** @hidden */
|
|
228
|
+
export var showGrandTotals = 'Show grand totals';
|
|
229
|
+
/** @hidden */
|
|
230
|
+
export var numberFormattingMenu = 'Number Formatting menu';
|
|
231
|
+
/** @hidden */
|
|
232
|
+
export var conditionalFormattingMenu = 'Conditional Formatting menu';
|
|
233
|
+
/** @hidden */
|
|
234
|
+
export var reportChange = 'Report change';
|
|
235
|
+
/** @hidden */
|
|
236
|
+
export var sortFieldTree = 'Sort field tree';
|
|
237
|
+
/** @hidden */
|
|
238
|
+
export var editCalculatedField = 'Edit calculated field';
|
|
239
|
+
/** @hidden */
|
|
240
|
+
export var sortField = 'Sort field';
|
|
241
|
+
/** @hidden */
|
|
242
|
+
export var filterField = 'Filter field';
|
|
243
|
+
/** @hidden */
|
|
244
|
+
export var removeField = 'Remove field';
|
|
245
|
+
/** @hidden */
|
|
246
|
+
export var openCalculatedField = 'Open calculated field dialog';
|
|
247
|
+
/** @hidden */
|
|
248
|
+
export var editRecord = 'Edit record';
|
|
249
|
+
/** @hidden */
|
|
250
|
+
export var saveEditedRecords = 'Save edited records';
|
|
251
|
+
/** @hidden */
|
|
252
|
+
export var addNewRecord = 'Add new record';
|
|
253
|
+
/** @hidden */
|
|
254
|
+
export var removeRecord = 'Remove record';
|
|
255
|
+
/** @hidden */
|
|
256
|
+
export var aggregateField = 'Aggregate field';
|
|
257
|
+
/** @hidden */
|
|
258
|
+
export var contextMenuCalculatedField = 'CalculatedField Context menu';
|
|
259
|
+
/** @hidden */
|
|
260
|
+
export var windowResize = 'Window resize';
|
|
261
|
+
/**
|
|
262
|
+
* Specifies action names of actionComplete events
|
|
263
|
+
*/
|
|
264
|
+
/** @hidden */
|
|
265
|
+
export var calculatedFieldApplied = 'Calculated field applied';
|
|
266
|
+
/** @hidden */
|
|
267
|
+
export var editedRecordsSaved = 'Edited records saved';
|
|
268
|
+
/** @hidden */
|
|
269
|
+
export var newRecordAdded = 'New record added';
|
|
270
|
+
/** @hidden */
|
|
271
|
+
export var recordRemoved = 'Record removed';
|
|
272
|
+
/** @hidden */
|
|
273
|
+
export var closeFieldlist = 'Field list closed';
|
|
274
|
+
/** @hidden */
|
|
275
|
+
export var fieldTreeSorted = 'Field tree sorted';
|
|
276
|
+
/** @hidden */
|
|
277
|
+
export var reportSaved = 'Report saved';
|
|
278
|
+
/** @hidden */
|
|
279
|
+
export var newReportAdded = 'New report added';
|
|
280
|
+
/** @hidden */
|
|
281
|
+
export var reportReSaved = 'Report re-saved';
|
|
282
|
+
/** @hidden */
|
|
283
|
+
export var reportRenamed = 'Report renamed';
|
|
284
|
+
/** @hidden */
|
|
285
|
+
export var reportRemoved = 'Report removed';
|
|
286
|
+
/** @hidden */
|
|
287
|
+
export var excelExported = 'Excel exported';
|
|
288
|
+
/** @hidden */
|
|
289
|
+
export var csvExported = 'CSV exported';
|
|
290
|
+
/** @hidden */
|
|
291
|
+
export var pdfExported = 'PDF exported';
|
|
292
|
+
/** @hidden */
|
|
293
|
+
export var pngExported = 'PNG exported';
|
|
294
|
+
/** @hidden */
|
|
295
|
+
export var jpegExported = 'JPEG exported';
|
|
296
|
+
/** @hidden */
|
|
297
|
+
export var svgExported = 'SVG exported';
|
|
298
|
+
/** @hidden */
|
|
299
|
+
export var conditionallyFormatted = 'Conditional formatting applied';
|
|
300
|
+
/** @hidden */
|
|
301
|
+
export var numberFormatted = 'Number formatting applied';
|
|
302
|
+
/** @hidden */
|
|
303
|
+
export var tableViewed = 'Table view shown';
|
|
304
|
+
/** @hidden */
|
|
305
|
+
export var chartViewed = 'Chart view shown';
|
|
306
|
+
/** @hidden */
|
|
307
|
+
export var subTotalsHidden = 'Sub-totals hidden';
|
|
308
|
+
/** @hidden */
|
|
309
|
+
export var subTotalsRowShown = 'Row sub-totals shown';
|
|
310
|
+
/** @hidden */
|
|
311
|
+
export var subTotalsColumnShown = 'Column sub-totals shown';
|
|
312
|
+
/** @hidden */
|
|
313
|
+
export var subTotalsShown = 'Sub-totals shown';
|
|
314
|
+
/** @hidden */
|
|
315
|
+
export var grandTotalsHidden = 'Grand totals hidden';
|
|
316
|
+
/** @hidden */
|
|
317
|
+
export var grandTotalsRowShown = 'Row grand totals shown';
|
|
318
|
+
/** @hidden */
|
|
319
|
+
export var grandTotalsColumnShown = 'Column grand totals shown';
|
|
320
|
+
/** @hidden */
|
|
321
|
+
export var grandTotalsShown = 'Grand totals shown';
|
|
322
|
+
/** @hidden */
|
|
323
|
+
export var valueSorted = 'Value sorted';
|
|
324
|
+
/** @hidden */
|
|
325
|
+
export var calculatedFieldEdited = 'Calculated field edited';
|
|
326
|
+
/** @hidden */
|
|
327
|
+
export var fieldSorted = 'Field sorted';
|
|
328
|
+
/** @hidden */
|
|
329
|
+
export var fieldFiltered = 'Field filtered';
|
|
330
|
+
/** @hidden */
|
|
331
|
+
export var fieldRemoved = 'Field removed';
|
|
332
|
+
/** @hidden */
|
|
333
|
+
export var fieldAggregated = 'Field aggregated';
|
|
334
|
+
/** @hidden */
|
|
335
|
+
export var recordEdited = 'Record edited';
|
|
336
|
+
/** @hidden */
|
|
337
|
+
export var reportChanged = 'Report changed';
|
|
338
|
+
/** @hidden */
|
|
339
|
+
export var windowResized = 'Window resized';
|
|
340
|
+
/** @hidden */
|
|
341
|
+
export var recordUpdated = 'Records updated';
|
|
342
|
+
/** @hidden */
|
|
343
|
+
export var drillThroughClosed = 'Drill-through closed';
|
|
@@ -670,3 +670,5 @@ export var PIVOTCHART_TYPE_DIALOG = 'e-pivotchart-type-dialog';
|
|
|
670
670
|
export var FORMAT_FONT_COLOR_PICKER = 'e-format-font-color-picker';
|
|
671
671
|
/** @hidden */
|
|
672
672
|
export var GROUP_PIVOT_ROW = 'e-group-pivot-rows';
|
|
673
|
+
/** @hidden */
|
|
674
|
+
export var TOOLBAR_MENU = 'e-pivot-toolbar-menu';
|
|
@@ -966,3 +966,14 @@ export declare type MultipleAxisMode =
|
|
|
966
966
|
'Stacked' |
|
|
967
967
|
/** Allows the chart series to be displayed in a single chart area for different value fields. */
|
|
968
968
|
'Single';
|
|
969
|
+
/**
|
|
970
|
+
* Allows the grand totals to be displayed in either the top or bottom position in the pivot table's row and column axes.
|
|
971
|
+
* The options available are:
|
|
972
|
+
* * Top: Allows the grand totals to be displayed in top position in the pivot table's row and column axes.
|
|
973
|
+
* * Bottom: Allows the grand totals to be displayed in bottom position in the pivot table's row and column axes.
|
|
974
|
+
*/
|
|
975
|
+
export declare type GrandTotalsPosition =
|
|
976
|
+
/** Allows the grand totals to be displayed in top position in the pivot table's row and column axes. */
|
|
977
|
+
'Top' |
|
|
978
|
+
/** Allows the grand totals to be displayed in bottom position in the pivot table's row and column axes. */
|
|
979
|
+
'Bottom';
|