@syncfusion/ej2-angular-pivotview 21.1.35-ngcc → 21.1.35

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.
Files changed (135) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +8 -0
  3. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
  4. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
  5. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
  6. package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
  8. package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
  9. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +353 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +353 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +26 -12
  15. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  16. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  17. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  18. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  19. package/src/pivotview/pivotview.component.d.ts +3 -0
  20. package/src/pivotview/pivotview.module.d.ts +6 -0
  21. package/styles/pivotfieldlist/_all.scss +2 -0
  22. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +240 -0
  23. package/styles/pivotfieldlist/_bootstrap-definition.scss +194 -0
  24. package/styles/pivotfieldlist/_bootstrap4-definition.scss +194 -0
  25. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  26. package/styles/pivotfieldlist/_bootstrap5-definition.scss +198 -0
  27. package/styles/pivotfieldlist/_fabric-dark-definition.scss +200 -0
  28. package/styles/pivotfieldlist/_fabric-definition.scss +194 -0
  29. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  30. package/styles/pivotfieldlist/_fluent-definition.scss +198 -0
  31. package/styles/pivotfieldlist/_fusionnew-definition.scss +197 -0
  32. package/styles/pivotfieldlist/_highcontrast-definition.scss +195 -0
  33. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +195 -0
  34. package/styles/pivotfieldlist/_layout.scss +1981 -0
  35. package/styles/pivotfieldlist/_material-dark-definition.scss +195 -0
  36. package/styles/pivotfieldlist/_material-definition.scss +195 -0
  37. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  38. package/styles/pivotfieldlist/_tailwind-definition.scss +198 -0
  39. package/styles/pivotfieldlist/_theme.scss +1998 -0
  40. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  41. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  42. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  43. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  44. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  45. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  46. package/styles/pivotfieldlist/fabric.scss +4 -1
  47. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  48. package/styles/pivotfieldlist/fluent.scss +4 -1
  49. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  50. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  51. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
  52. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  53. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  54. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  55. package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
  56. package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
  57. package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
  58. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  59. package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
  60. package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
  61. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
  62. package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
  63. package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
  64. package/styles/pivotfieldlist/icons/_material.scss +358 -0
  65. package/styles/pivotfieldlist/icons/_material3.scss +353 -0
  66. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
  67. package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
  68. package/styles/pivotfieldlist/material-dark.scss +4 -1
  69. package/styles/pivotfieldlist/material.scss +4 -1
  70. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  71. package/styles/pivotfieldlist/tailwind.scss +4 -1
  72. package/styles/pivotview/_all.scss +2 -0
  73. package/styles/pivotview/_bootstrap-dark-definition.scss +164 -0
  74. package/styles/pivotview/_bootstrap-definition.scss +161 -0
  75. package/styles/pivotview/_bootstrap4-definition.scss +161 -0
  76. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  77. package/styles/pivotview/_bootstrap5-definition.scss +166 -0
  78. package/styles/pivotview/_fabric-dark-definition.scss +163 -0
  79. package/styles/pivotview/_fabric-definition.scss +160 -0
  80. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  81. package/styles/pivotview/_fluent-definition.scss +166 -0
  82. package/styles/pivotview/_fusionnew-definition.scss +166 -0
  83. package/styles/pivotview/_highcontrast-definition.scss +159 -0
  84. package/styles/pivotview/_highcontrast-light-definition.scss +160 -0
  85. package/styles/pivotview/_layout.scss +1118 -0
  86. package/styles/pivotview/_material-dark-definition.scss +167 -0
  87. package/styles/pivotview/_material-definition.scss +163 -0
  88. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  89. package/styles/pivotview/_tailwind-definition.scss +166 -0
  90. package/styles/pivotview/_theme.scss +2026 -0
  91. package/styles/pivotview/bootstrap-dark.scss +5 -1
  92. package/styles/pivotview/bootstrap.scss +5 -1
  93. package/styles/pivotview/bootstrap4.scss +5 -1
  94. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  95. package/styles/pivotview/bootstrap5.scss +5 -1
  96. package/styles/pivotview/fabric-dark.scss +5 -1
  97. package/styles/pivotview/fabric.scss +5 -1
  98. package/styles/pivotview/fluent-dark.scss +4 -1
  99. package/styles/pivotview/fluent.scss +5 -1
  100. package/styles/pivotview/highcontrast-light.scss +5 -1
  101. package/styles/pivotview/highcontrast.scss +5 -1
  102. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  103. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  104. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  105. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  106. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  107. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  108. package/styles/pivotview/icons/_fabric.scss +184 -0
  109. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  110. package/styles/pivotview/icons/_fluent.scss +183 -0
  111. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  112. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  113. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  114. package/styles/pivotview/icons/_material-dark.scss +184 -0
  115. package/styles/pivotview/icons/_material.scss +184 -0
  116. package/styles/pivotview/icons/_material3.scss +183 -0
  117. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  118. package/styles/pivotview/icons/_tailwind.scss +183 -0
  119. package/styles/pivotview/material-dark.scss +5 -1
  120. package/styles/pivotview/material.scss +5 -1
  121. package/styles/pivotview/tailwind-dark.scss +4 -1
  122. package/styles/pivotview/tailwind.scss +5 -1
  123. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  124. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
  125. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  126. package/@syncfusion/ej2-angular-pivotview.js +0 -409
  127. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  128. package/CHANGELOG.md +0 -825
  129. package/dist/ej2-angular-pivotview.umd.js +0 -706
  130. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  131. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  132. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  133. package/ej2-angular-pivotview.d.ts +0 -6
  134. package/ej2-angular-pivotview.metadata.json +0 -1
  135. package/postinstall/tagchange.js +0 -18
package/CHANGELOG.md DELETED
@@ -1,825 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Pivot Table
6
-
7
- #### Bug Fixes
8
-
9
- - `#I437267` - During initial rendering, the spinner will now be properly displayed in the pivot table.
10
-
11
- #### New Features
12
-
13
- - `#F165214` - Provided paging support in server side engine that allows to break and display large amounts of data page by page.
14
- - Provided the role option that allows access to restricted cube information such as measures, dimensions, hierarchy, and more when a SSAS OLAP cube is bound to the pivot table.
15
-
16
- #### Breaking Changes
17
-
18
- - The property type `pivotValues` has been changed from `IPivotValues` to `IAxisSet[][]`.
19
-
20
- | Property Name | Description | Previous Type | Current Type |
21
- |---|---|---|---|
22
- | pivotValues | It holds the collection of cell information that has been populated from the engine on the basis of the given pivot report to render the component as table and chart. | IPivotValues | IAxisSet[][] |
23
-
24
- ## 20.4.38 (2022-12-21)
25
-
26
- ### Pivot Table
27
-
28
- #### Bug Fixes
29
-
30
- - `#I423050` - Filter state will now be properly maintained in the member editor.
31
- - `#I420253` - When virtual scrolling is enabled, the pivot table will now scroll properly.
32
- - Number formatting is now applied properly to row and column headers in the pivot table.
33
-
34
- #### New Features
35
-
36
- - `#I347303`, `#I400764`, `#F172939` - Provided support for displaying row and column sub-totals at the top or bottom of the header group in the pivot table.
37
- - `#I310709`, `#I346859` - Provided support to display pivot chart's series for multiple measures on a single y-axis.
38
- - `#I398184` - The pivot table now supports customising the size of PDF document while exporting.
39
- - `#I305545` - The pivot table now allows you to export both the table and the chart to a single PDF document.
40
-
41
- #### Breaking Changes
42
-
43
- - The `chartSettings.showMemberSeries` property is deprecated and will no longer to be used. Use `chartSettings.showPointColorByMembers` to achieve the same.
44
-
45
- | Previous | Now |
46
- |---|---|
47
- | showMemberSeries | showPointColorByMembers |
48
-
49
- - The `chartExport` method parameters for the pivot table have now been changed.
50
-
51
- **Previous**
52
-
53
-
54
- | Parameter | Type | Description |
55
- |---|---|---|
56
- | type | ExportType | Defines the export type. |
57
- | fileName | string | Defines file name of export document. |
58
- | orientation | PdfPageOrientation | Defines the page orientation on pdf export(0 for Portrait mode, 1 for Landscape mode). |
59
- | width | number | Defines width of the export document. |
60
- | height | number | Defines width of the export document. |
61
-
62
- **Now**
63
-
64
-
65
- | Parameter | Type | Description |
66
- |---|---|---|
67
- | type | ExportType | Defines the export type. |
68
- | pdfExportProperties | PdfExportProperties | Allows to define the chart's export properties such as file name, orientation, width and height. |
69
- | isMultipleExport | boolean | Allows to export multiple tables and charts into a single PDF document. |
70
- | pdfDoc | Object | Allows the export of an external PDF document along with current PDF document. |
71
- | isBlob | boolean | Allows the PDF document to be saved as blob data. |
72
-
73
- ## 20.3.59 (2022-11-29)
74
-
75
- ### Pivot Table
76
-
77
- #### Bug Fixes
78
-
79
- - `#I405590` - The pivot table will now properly refresh while performing value sorting with the grouping bar and autofit enabled.
80
- - `#I420612` - The pivot table will now be rendered properly while switching between reports in the toolbar.
81
- - `#F420612` - The pivot table's alphanumeric sorting will now works properly.
82
-
83
- ## 20.3.57 (2022-11-15)
84
-
85
- ### Pivot Table
86
-
87
- #### Bug Fixes
88
-
89
- - `#I405590` - The pivot table will now properly refreshed while performing value sorting with autofit enabled.
90
-
91
- #### New Features
92
-
93
- - `#I395302` - When using a server-side engine, the aggregated values of the pivot table will now be customized via the controller.
94
-
95
- ## 20.3.50 (2022-10-18)
96
-
97
- ### Pivot Table
98
-
99
- #### Bug Fixes
100
-
101
- - The drillthrough feature now works properly with alphanumeric data.
102
-
103
- ## 20.3.49 (2022-10-11)
104
-
105
- ### Pivot Table
106
-
107
- #### Bug Fixes
108
-
109
- - `#I408669` - Number formatting is now applied properly to row and column headers in the pivot table.
110
- - `#I405681` - Pivot table cell values are now properly exported as PDF document based on the text align property.
111
-
112
- ## 20.3.47 (2022-09-29)
113
-
114
- ### Pivot Table
115
-
116
- #### Bug Fixes
117
-
118
- - `#I395797` - Text wrap is now properly applied in the pivot table.
119
- - `#I400397` - When using server-side engine, row headers are now displayed correctly based on their level in the pivot table.
120
- - `#I395797` - The grand totals position in the pivot table now works properly when using server-side engine.
121
- - `#I405131` - The tooltip content is now properly displayed in the pivot table.
122
- - `#I397110` - The pivot table will now properly export to Excel format even if it contains hidden columns.
123
- - `#I405326` - The value sort icon is now properly displayed in the pivot table.
124
-
125
- #### New Features
126
-
127
- - `#I311235` - The pivot table now exports to PDF/CSV as a blob object with virtual scrolling enabled.
128
- - `#I311235` - With a relational datasource, field list treeview can now be displayed in a hierarchical manner.
129
- - `#I281131`, `#I351494`, `#F174212` - Provided paging support that allows to break and display large amounts of data page by page, improving the overall rendering performance of the pivot table.
130
- - `#I369101` - When multiple axes are enabled, the pivot chart series can now be displayed based on members in all chart areas.
131
-
132
- ## 20.2.43 (2022-08-08)
133
-
134
- ### Pivot Table
135
-
136
- #### Bug Fixes
137
-
138
- - `#I390649` - When virtual scrolling is enabled, the pivot table now properly refreshed while performing value sorting.
139
-
140
- #### New Features
141
-
142
- - `#I364830` - Improved server-side engine performance. As a result, pivot table can now render up to 3 million records without any issues.
143
- - `#I382580` - The calculated field UI now has a "Format" dropdown option for relational data source.
144
-
145
- ## 20.2.39 (2022-07-19)
146
-
147
- ### Pivot Table
148
-
149
- #### Bug Fixes
150
-
151
- - `#I389665` - The pivot table can now be rendered properly while applying date grouping.
152
- - `#I389889` - The class names in the pivot table are properly updated for the sub-total columns.
153
-
154
- ## 20.2.38 (2022-07-12)
155
-
156
- ### Pivot Table
157
-
158
- #### Bug Fixes
159
-
160
- - The selection is now properly working when using the selection mode of the pivot table.
161
- - The engine population events are now properly triggered during virtual scrolling.
162
-
163
- ## 20.2.36 (2022-06-30)
164
-
165
- ### Pivot Table
166
-
167
- #### Bug Fixes
168
-
169
- - `#I387410` - The pivot table with OLAP cube can now render properly with calculated fields when virtual scrolling is enabled.
170
-
171
- #### New Features
172
-
173
- - Provided support to search for a specific field in the field list UI.
174
-
175
- ## 20.1.61 (2022-06-21)
176
-
177
- ### Pivot Table
178
-
179
- #### Bug Fixes
180
-
181
- - `#I382188` - When there is only one record, inline editing for value fields with advanced aggregate types now works properly.
182
-
183
- ## 20.1.58 (2022-05-31)
184
-
185
- ### Pivot Table
186
-
187
- #### Bug Fixes
188
-
189
- - `#I380533` - When using value fields with advanced aggregate options, the pivot table can now be properly exported to Excel and CSV formats.
190
-
191
- ## 20.1.57 (2022-05-24)
192
-
193
- ### Pivot Table
194
-
195
- #### Bug Fixes
196
-
197
- - `#I378816` - When the defer layout update option is enabled, dataBound event is now restricted while clicking cancel option in the popup field list UI.
198
- - `#F174968` - When virtual scrolling is enabled, the pivot table can now be rendered properly while perform member filtering.
199
- - The pivot table's column selection is now working properly.
200
-
201
- ## 20.1.56 (2022-05-17)
202
-
203
- ### Pivot Table
204
-
205
- #### Bug Fixes
206
-
207
- - The pivot table can now be sorted properly with date type headers.
208
-
209
- #### New Features
210
-
211
- - The pivot table now has support for adding custom classes via 'cssClass' property.
212
-
213
- ## 20.1.55 (2022-05-12)
214
-
215
- ### Pivot Table
216
-
217
- #### Bug Fixes
218
-
219
- - `#I363090` - The previous cell selection can now be maintained while restricting the current selection in the pivot table's column axis using the cell selection event.
220
- - `#I373754` - The pivot table can now be exported properly to Excel and CSV formats while using the virtual scrolling feature, with sub-totals hidden.
221
- - `#I374945` - The pivot chart will now refresh properly with the specified height when switching from adaptive to desktop mode.
222
-
223
- #### New Features
224
-
225
- - `#F174296` - Members of a specific field are now sorted based on user-defined order in the Pivot Table's row and column axes.
226
-
227
- ## 20.1.48 (2022-04-12)
228
-
229
- ### Pivot Table
230
-
231
- #### Bug fixes
232
-
233
- - In the OLAP field list UI, calculated fields are now properly displayed.
234
- - The pivot table now exports properly to excel format with string type values when virtual scrolling is enabled.
235
-
236
- #### Features
237
-
238
- - `#FB33029` - The calculated field can now be created without formatting by using the "None" option in the OLAP calculated field UI.
239
-
240
- ## 20.1.47 (2022-04-04)
241
-
242
- ### Pivot Table
243
-
244
- #### Bug Fixes
245
-
246
- - `#I366940` - When the defer layout update option is enabled, the field list UI will now properly refresh while drag and drop measures.
247
- - `#I367463` - When virtual scrolling is enabled, the pivot table now properly refresh based on the specified height.
248
- - In Angular, grouping will now work properly with the static field list.
249
- - `#I370021` - While resizing, the pivot chart is now properly refreshed.
250
-
251
- #### New Features
252
-
253
- - Provided support to expand all members (aka, headers) in a specific field in the Pivot Table's row and column axes.
254
- - Provided built-in option in toolbar UI, grand totals will now display either at the first or last position in the Pivot Table's row and column axes.
255
-
256
- ## 19.4.55 (2022-03-08)
257
-
258
- ### Pivot Table
259
-
260
- #### Bug Fixes
261
-
262
- - When virtual scrolling is enabled, the pivot table now properly refresh based on the specified height.
263
-
264
- ## 19.4.54 (2022-03-01)
265
-
266
- ### Pivot Table
267
-
268
- #### Bug Fixes
269
-
270
- - When the defer layout update option is enabled, the field list UI will now properly refresh while performing checkbox selection.
271
-
272
- ## 19.4.53 (2022-02-22)
273
-
274
- ### Pivot Table
275
-
276
- #### Bug Fixes
277
-
278
- - When changing the report dynamically using the toolbar UI options, the Pivot Chart is now properly displayed.
279
- - `#I366940` - When defer layout update is enabled, measures are properly added to the field list UI.
280
-
281
- ## 19.4.52 (2022-02-15)
282
-
283
- ### Pivot Table
284
-
285
- #### Bug Fixes
286
-
287
- - Events to customize cell values using PivotEngine export are now working properly in Angular.
288
-
289
- ## 19.4.50 (2022-02-08)
290
-
291
- ### Pivot Table
292
-
293
- #### Bug Fixes
294
-
295
- - `#I359726`, `#I354750` - When using the virtual scrolling feature, the pivot table can now be exported properly to Excel and CSV formats.
296
- - Even the value fields starts with the same unique name, the Pivot Table values are now properly displayed.
297
- - `#I363972` - With the toolbar UI, the Pivot Chart is now refreshed properly while performing checkbox selection in the chart menu.
298
-
299
- ## 19.4.47 (2022-01-25)
300
-
301
- ### Pivot Table
302
-
303
- #### Bug Fixes
304
-
305
- - `#I362895` - The field list UI will now be refreshed properly when dragging a field using the `fieldDrop` event with defer layout update.
306
-
307
- ## 19.4.43 (2022-01-18)
308
-
309
- ### Pivot Table
310
-
311
- #### Bug Fixes
312
-
313
- - `#I346790` - The Pivot Table is now properly refreshed with virtual scrolling when using touch.
314
-
315
- #### New Features
316
-
317
- - `#I354750` - Provided events support to customize cell values in PivotEngine export.
318
-
319
- ## 19.4.42 (2022-01-11)
320
-
321
- ### Pivot Table
322
-
323
- #### Bug Fixes
324
-
325
- - `#I359726` - When exporting the Pivot Table to PDF format, styles can now be properly applied to the header and footer.
326
- - `#I359726` - When exporting the Pivot Table to Excel format, the headers are now properly shown.
327
-
328
- ## 19.4.41 (2022-01-04)
329
-
330
- ### Pivot Table
331
-
332
- #### Bug Fixes
333
-
334
- - `#I340908` - In Firefox browser, the Pivot Table is now refreshed properly with virtual scrolling.
335
-
336
- ## 19.4.40 (2021-12-28)
337
-
338
- ### Pivot Table
339
-
340
- #### Bug Fixes
341
-
342
- - The Pivot Chart is now properly shown with the default value of the "zoomFactor" property.
343
-
344
- ## 19.4.38 (2021-12-17)
345
-
346
- ### Pivot Table
347
-
348
- #### Bug Fixes
349
-
350
- - `#I349396` - When the virtual scrolling feature is enabled, as well as when members are filtered, the Pivot Table can now be rendered properly.
351
- - `#I340539` - In Angular, the bundle size for Pivot Table has been reduced.
352
- - `#I347116` - With the toolbar UI, the Pivot Chart is now refreshed properly.
353
- - `#I347116` - With the Pivot Chart's default settings, its labels are displayed properly.
354
- - `#I348183` - While performing value sorting with a single measure, the Pivot Table will now be rendered properly.
355
- - `#I348952` - In the pivot table, the tooltip for string fields is now properly displayed.
356
- - `#F170928` - When using the virtual scrolling feature, the calculated field buttons with edit option inside grouping bar and field list layout are now properly displayed.
357
- - `#F170654` - The caption in the grouping field buttons within the grouping bar and field list layout is now displayed properly.
358
-
359
- #### New Features
360
-
361
- - `#I295658`, `#I320675`, `#I329355`, `#F158271`, `#F158475` - Provided support to display summarized totals (grand totals) either at the first or last position in the Pivot Table's row and column axes.
362
- - `#I327744` - Provided support to align text for specific column headers.
363
- - `#F159996` - Provided action begin and complete events to identify UI actions in the Pivot Table such as drill down/up, value sorting, grouping bar and field list UI actions, and CRUD operations. If the UI actions do not achieve the desired result, the action failure event is triggered.
364
-
365
- ## 19.3.46 (2021-10-19)
366
-
367
- ### Pivot Table
368
-
369
- #### Bug Fixes
370
-
371
- - `#I345297` - While clicking the value sorting icon, the cell click event is now properly triggered.
372
- - `#I342886` - The "Calculated Field" feature in the pivot table now works properly in Angular production mode.
373
-
374
- ## 19.3.44 (2021-10-05)
375
-
376
- ### Pivot Table
377
-
378
- #### Bug Fixes
379
-
380
- - `#F168308` - The pivot table can now be rendered properly with custom number formats.
381
- - `#I339705` - When the virtual scrolling feature is used, the pivot table can now be rendered properly without an unnecessary horizontal scrollbar when the content does not require it.
382
- - `#I341987` - The pivot table can now be rendered properly while perform filtering with OLAP data source.
383
- - `#I342221` - The pivot table can now be rendered properly while applying date grouping through UI.
384
- - The column headers are now displayed properly while perform resizing.
385
- - `#I342221` - The pivot table can now be rendered properly while perform member filtering with an empty header.
386
-
387
- #### New Features
388
-
389
- - `#I300095` - Provided support to display measures at any desired positions in the column or row axis for relational data sources.
390
-
391
- ## 19.2.56 (2021-08-17)
392
-
393
- ### Pivot Table
394
-
395
- #### New Features
396
-
397
- - `#284641`,`#326945`,`#327746`,`#329355` - Through grid settings event, the pivot table's columns can now fit the widest cell’s content without wrapping.
398
-
399
- ## 19.2.55 (2021-08-11)
400
-
401
- ### Pivot Table
402
-
403
- #### Bug Fixes
404
-
405
- - `#I337487` - Now the field's caption can be changed dynamically using the value field settings pop-up.
406
- - `#F167449` - Now the fields panel has been refreshed properly with toolbar UI.
407
-
408
- ## 19.2.51 (2021-08-03)
409
-
410
- ### Pivot Table
411
-
412
- #### Bug Fixes
413
-
414
- - `#F166428` - Issue while resizing column with virtual scrolling in the pivot table has been resolved.
415
- - `#336591`,`#337082` - When using the virtual scrolling feature, the pivot table columns are now properly displayed when scrolling horizontally.
416
- - `#337082` - The pivot table is now properly displayed when scrolling horizontally while filtering is applied when using the virtual scrolling feature.
417
-
418
- ## 19.2.49 (2021-07-27)
419
-
420
- ### Pivot Table
421
-
422
- #### Bug Fixes
423
-
424
- - `#F167209` - The script error caused by box selection when the mouse is released over a pivot table cell has been resolved.
425
- - `#331835` - The issue with calculated fields values in drill through retrieving inconsistent raw data has been resolved.
426
- - The pivot chart can now be rendered properly with Blank headers in row fields.
427
- - The pivot table can now be exported properly with zero values to excel file.
428
-
429
- ## 19.2.48 (2021-07-20)
430
-
431
- ### Pivot Table
432
-
433
- #### Bug Fixes
434
-
435
- - `#327131` - Now the number format issue for empty cells in excel exporting has been fixed.
436
-
437
- ## 19.2.46 (2021-07-06)
438
-
439
- ### Pivot Table
440
-
441
- #### Bug Fixes
442
-
443
- - Border alignment issue in "Grouping Bar" UI has been fixed.
444
-
445
- - `#299730`, `#315686` - Issues in "Date Grouping" feature have been fixed.
446
-
447
- ## 18.4.30 (2020-12-17)
448
-
449
- ### Pivot Table
450
-
451
- #### Bug Fixes
452
-
453
- - `#300162` - The pivot chart now works properly with height as a percentage.
454
-
455
- - `#298258` - Now the field list can be dynamically rendered without any errors.
456
-
457
- ## 18.2.56 (2020-09-01)
458
-
459
- ### Pivot Table
460
-
461
- #### Bug Fixes
462
-
463
- - `#289077` - Horizontal scrolling issue raised in the latest version of Firefox has been fixed.
464
-
465
- - `#288047` - The options in the number formatting pop-up are now properly maintained.
466
- - `#288625` - The selection option in the pivot chart is now working properly.
467
- - `#288633` - Members of the pivot chart legend are not properly segregated.
468
-
469
- ## 18.2.55 (2020-08-25)
470
-
471
- ### Pivot Table
472
-
473
- #### Bug Fixes
474
-
475
- - The drill through pop-up now be showed the correct raw items when we filtering applied in fields in filter axis.
476
- - The drill through pop-up can now be open when we bind measures in row axis.
477
-
478
- #### New Features
479
-
480
- - `#283107` - Provided template support in toolbar panel to create custom toolbar option.
481
-
482
- ## 18.2.54 (2020-08-18)
483
-
484
- ### Pivot Table
485
-
486
- #### Bug Fixes
487
-
488
- - Now drill-through pop-up can be open when the measures are placed in row axis.
489
-
490
- - `#282514` - Now the first column’s width set in code-behind will be maintained.
491
- - `#283562` - Now RGB colours can be applied in conditional formatting.
492
-
493
- #### New Features
494
-
495
- - `#260352`,`#276917`,`#280407`,`#281842` - Provided an option to do the aggregation in server side and the rendering part alone will be done in client side. It is to improve the performance while binding huge size of data from remote server.
496
- - `#279727` - Provided support to sort the alphanumeric field members.
497
- - `#F155279` - Provided an option to restrict the drill-through pop-up to display.
498
- - `#281462`,`#282526`,`#287070` - Provided an option to edit the aggregated cells directly (inline editing) without opening editing pop-up.
499
- - `#283107` - Provided template support in toolbar panel to create custom toolbar option.
500
- - `#284800` - Introduced an event to get the edited raw data information after the editing operation.
501
-
502
- - `#260352`,`#276917`,`#280407`,`#281842` - Provided an option to do the aggregation in server side and the rendering part alone will be done in client side. It is to improve the performance while binding huge size of data from remote server.
503
- - `#279727` - Provided support to sort the alphanumeric field members.
504
- - `#F155279` - Provided an option to restrict the drill-through pop-up to display.
505
- - `#281462`,`#282526`,`#287070` - Provided an option to edit the aggregated cells directly (inline editing) without opening editing pop-up.
506
- - `#284800` - Introduced an event to get the edited raw data information after the editing operation.
507
-
508
- ## 18.2.44 (2020-07-07)
509
-
510
- ### Pivot Table
511
-
512
- #### New Features
513
-
514
- - `#233316`,`#234648`,`#247163` - The pivot chart in the Pivot Table now has these chart types: pie, doughnut, pyramid, and funnel.
515
- - In addition to JSON, the pivot table now supports CSV data sources, as well.
516
-
517
- #### Bug Fixes
518
-
519
- - `#275647` - Now the spanning issue in excel exporting has been fixed.
520
- - `#F154285` - Now the issue in custom number formatting has been fixed.
521
-
522
- ## 18.1.44 (2020-04-14)
523
-
524
- ### Pivot Table
525
-
526
- #### Bug Fixes
527
-
528
- - `#266106` - Improved the data refresh on virtual scrolling.
529
-
530
- ## 18.1.36-beta (2020-03-19)
531
-
532
- ### Pivot Table
533
-
534
- #### Breaking Changes
535
-
536
- The appearance of the pivot table component has been improved.
537
-
538
-
539
- #### New Features
540
-
541
- - `#259812` - Provision has been provided to display only the required aggregation types in their context menu.
542
- - `#262927` - Now, the drill through and editing feature can be worked in pivot chart by clicking its series.
543
- - `#263612` - Authentication option provided to access the OLAP Cube while connecting it in a pivot table.
544
- - `#151883` - Additional parameters are included in the cell template feature to distinguish each cells.
545
- - Now, you can customize the each field buttons (show and hide the icons, restrict drag and drop operations) available in grouping bar and field list separately.
546
- - Provision provided to customize the tooltip for both pivot table and pivot chart views.
547
- - Formatting option included in the calculated field pop-up to format the calculated fields dynamically.
548
- - Provision provided to display only the required chart types in its context menu available in toolbar panel.
549
- - An option included in the chart types context menu to change the multiple axes option dynamically.
550
- - An option included in the member editor to sort its members in a desired order.
551
- - Provision provided to export the complete page when virtual scroll option is enabled.
552
-
553
- #### Bug Fixes
554
-
555
- - `#266452` - Now, the pivot table sample can be run in production mode of Angular framework.
556
-
557
- ## 17.4.39 (2019-12-17)
558
-
559
- ### Pivot Table
560
-
561
- #### Bug Fixes
562
-
563
- - `#254586` - The conditional formatting will no longer be applied in empty cells.
564
- - The summarization text `of` in value buttons inside grouping bar and field list layout can be localized now.
565
-
566
- - `#254586` - The conditional formatting will no longer be applied in empty cells.
567
- - The summarization text `of` in value buttons inside grouping bar and field list layout can be localized now.
568
- - `#247376` - The chart events under the chart settings property works now.
569
-
570
- #### New Features
571
-
572
- - `#252636` - Provision provided to disable the scrollbars in pivot chart.
573
- - `#250072` - Provision provided to group and separate the grouped headers through UI.
574
-
575
- ## 17.3.26 (2019-11-05)
576
-
577
- ### Pivot Table
578
-
579
- #### Bug Fixes
580
-
581
- - `#251642` – Now, the defer layout update option can be enabled or disabled dynamically through field list UI.
582
- - `#251558` – Now, the pivot chart draws with the percent of height value.
583
-
584
- - #251642 – Now, the defer layout update option can be enabled or disabled dynamically through field list UI.
585
- - #251558 – Now, the pivot chart draws with the percent of height value.
586
-
587
- #### New Features
588
-
589
- - `#248131` – Provided the conditional expression support to create calculated field.
590
- - `#251642` – The performance of virtual scrolling while adding or removing fields and moving fields to any axis is improved.
591
-
592
- - #248131 – Provided the conditional expression support to create calculated field.
593
- - #251642 – The performance of virtual scrolling while adding or removing fields and moving fields to any axis is improved.
594
-
595
- ## 17.3.9-beta (2019-09-20)
596
-
597
- ### Pivot Table
598
-
599
- #### Bug Fixes
600
-
601
- - #244842 – Field list icon will be now placed inside the pivot table when field list option isn't included in toolbar.
602
- - The last column of the pivot table can be displayed in Excel exported page properly.
603
-
604
- - #247376 – The localization text for calculated fields is now displayed properly in tooltip.
605
-
606
- #### New Features
607
-
608
- - #245423 – Provision provided to persist and reload the pivot report.
609
- - Provided SSAS OLAP data source support.
610
-
611
- ## 17.2.28-beta (2019-06-27)
612
-
613
- ### Pivot Table
614
-
615
- #### Breaking Changes
616
-
617
- - The `dataSource` and `dataSource.data` properties has now been renamed to `dataSourceSettings` and `dataSourceSettings.dataSource` respectively.
618
-
619
- #### New Features
620
-
621
- - #229377 – The pivot chart which is bound with pivot table allows the user to drill down and drill up now individually.
622
- - #144382 – Unnecessary scroll bars have been removed from pivot table component.
623
-
624
- #### Bug Fixes
625
-
626
- - #144352 – The fields can be added dynamically for Pivot Chart control.
627
-
628
- - `#237515` – Date grouping is now working properly with column axis.
629
- - `#237535` – You can add fields dynamically with pivot table component in virtual scrolling mode.
630
-
631
- ## 17.1.47 (2019-05-14)
632
-
633
- ### Pivot Table
634
-
635
- #### Bug Fixes
636
-
637
- - #232925 - Grouping bar feature is now working fine with the combination of toolbar and pivot chart.
638
-
639
- #### New Features
640
-
641
- - #230489 – You can drill the pivot table headers based on the position.
642
-
643
- ## 17.1.38 (2019-03-29)
644
-
645
- ### Pivot Table
646
-
647
- #### Bug Fixes
648
-
649
- - Drill-down works properly for date formatted headers.
650
-
651
- #### New Features
652
-
653
- - Users can access grid functionalities in the drill-through pop-up.
654
- - Option to always show the value header even with single value binding.
655
- - Row header repeats on each page of the PDF document when exporting.
656
- - Users can display the value zero as zero and empty cells with a custom value.
657
- - Charts can be rendered against pivot table data independently, and users can modify their report dynamically using the field list.
658
- - Toolbar support is provided to the pivot table, allowing users easy access to frequently used features.
659
- - A grouping option is available for date and numbers fields.
660
- - Users can customize or add custom templates to the Pivot Table cells.
661
- - Cell selection allows users to select cells and access the selected cell information through the cell selection event.
662
-
663
- ## 17.1.32-beta (2019-03-13)
664
-
665
- ### Pivot Table
666
-
667
- #### Bug Fixes
668
-
669
- - Drill-down works properly for date formatted headers.
670
-
671
- #### New Features
672
-
673
- - Users can access grid functionalities in the drill-through pop-up.
674
- - Option to always show the value header even with single value binding.
675
- - Row header repeats on each page of the PDF document when exporting.
676
- - Users can display the value zero as zero and empty cells with a custom value.
677
- - Charts can be rendered against pivot table data independently, and users can modify their report dynamically using the field list.
678
- - Toolbar support is provided to the pivot table, allowing users easy access to frequently used features.
679
- - A grouping option is available for date and numbers fields.
680
- - Users can customize or add custom templates to the Pivot Table cells.
681
- - Cell selection allows users to select cells and access the selected cell information through the cell selection event.
682
-
683
- ## 17.1.1-beta (2019-01-29)
684
-
685
- ### Pivot Grid
686
-
687
- #### New Features
688
-
689
- - F141747- Always shows value caption in headers even having single measure.
690
- - Cell selection now allows to select cells as row and column wise.
691
- - Shows the filter state in the fields of filter axis.
692
-
693
- ## 16.4.42 (2018-12-14)
694
-
695
- ### Pivot Grid
696
-
697
- #### Bug Fixes
698
-
699
- - 219623 - Text in the field list tab gets completely displayed in mobile layout.
700
- - 219625 - Scrolling works properly in touch mode when virtual scroll option is enabled.
701
- - 219625 - In mobile device, virtual scrolling sample is loaded properly from the sample browser.
702
- - 219625 - In mobile device, last column cells are displayed properly.
703
-
704
- #### New Features
705
-
706
- - Raw items in the control can be edited and updated at runtime.
707
- - Provided support to list the raw items for a particular value cell.
708
- - In the filter pop-up, provided support to set the limit the display field values and search option for refining the values from large data.
709
- - Provided hyperlink support to perform any custom operation programmatically.
710
- - Defer update option has been provided to refresh the control on-demand and not during every UI interaction for better performance.
711
- - Provided support to show or hide subtotals and grand totals for rows and columns.
712
- - More aggregation types like – Distinct Count, Product, Running Totals, Percentage of Column Total, Percentage of Parent Column Total, Population Var are added.
713
-
714
- ## 16.4.40-beta (2018-12-10)
715
-
716
- ### Pivot Grid
717
-
718
- #### Bug Fixes
719
-
720
- - 219623 - Text in the field list tab gets completely displayed in mobile layout.
721
- - 219625 - Scrolling works properly in touch mode when virtual scroll option is enabled.
722
- - 219625 - In mobile device, virtual scrolling sample is loaded properly from the sample browser.
723
- - 219625 - In mobile device, last column cells are displayed properly.
724
-
725
- #### New Features
726
-
727
- - Raw items in the control can be edited and updated at runtime.
728
- - Provided support to list the raw items for a particular value cell.
729
- - In the filter pop-up, provided support to set the limit the display field values and search option for refining the values from large data.
730
- - Provided hyperlink support to perform any custom operation programmatically.
731
- - Defer update option has been provided to refresh the control on-demand and not during every UI interaction for better performance.
732
- - Provided support to show or hide subtotals and grand totals for rows and columns.
733
- - More aggregation types like – Distinct Count, Product, Running Totals, Percentage of Column Total, Percentage of Parent Column Total, Population Var are added.
734
-
735
- ## 16.3.21 (2018-09-22)
736
-
737
- ### Pivot Grid
738
-
739
- #### New Features
740
-
741
- - 208354, 211758 — Value fields can be placed in row axis now.
742
- - **Virtual scrolling** options have been provided to load large amounts of data with high performance.
743
- - **Conditional formatting** support allows users to define conditions and format grid cells’ font, colour etc.
744
- - **Label and value-based filtering** options are provided that work similar to Microsoft Excel.
745
-
746
- ## 16.3.17 (2018-09-12)
747
-
748
- ### Pivot Grid
749
-
750
- #### New Features
751
-
752
- - 208354, 211758 — Value fields can be placed in row axis now.
753
- - **Virtual scrolling** options have been provided to load large amounts of data with high performance.
754
- - **Conditional formatting** support allows users to define conditions and format grid cells’ font, colour etc.
755
- - **Label and value-based filtering** options are provided that work similar to Microsoft Excel.
756
-
757
- ## 16.2.41 (2018-06-25)
758
-
759
- ### Pivot Grid
760
-
761
- The pivot grid is a multi-dimensional data visualization component built on top of the relational data sources. The pivot report can be managed dynamically at runtime along with other capabilities like aggregation, filtering and sorting (field and value based).
762
-
763
-
764
- - **Data Sources** - Binds the component with an array of JavaScript objects.
765
- - **Filtering** - Allows user to view only specific/desired records in the component.
766
- - **Sorting** - Both member and value sorting are supported. It’s allows user to order fields and values (column) either in ascending or descending order respectively.
767
- - **Field List & Grouping Bar** - Supports UI interaction at runtime to dynamically change the report along with sorting, filtering and remove options.
768
- - **Aggregation** - Provides built in aggregation types like sum, average, min, max and count.
769
- - **Calculated Field** - Users can add new value field(s) to the report dynamically using this option.
770
- - **Adaptive Rendering** - Adapts with optimal user interfaces for mobile and desktop form-factors, thus helping the user’s application to scale elegantly across all the form-factors without any additional effort.
771
- - **Exporting** - Provides the option to exporting records to Excel, CSV and PDF formats.
772
-
773
-
774
- ## 18.2.58 (2020-09-15)
775
-
776
- ### Pivot Table
777
-
778
- #### Bug Fixes
779
-
780
- - `#289127` - The component can now be rendered by binding its report inside the asynchronous function.
781
-
782
- ## 18.2.57 (2020-09-08)
783
-
784
- ### Pivot Table
785
-
786
- #### Bug Fixes
787
-
788
- - `#290020` - Unwanted scrollbars will not be shown in the pivot table when exporting is allowed.
789
- - `#F157261` - The component can now be refreshed when bind empty data source.
790
-
791
- ## 18.2.46 (2020-07-21)
792
-
793
- ### Pivot Table
794
-
795
- #### Bug Fixes
796
-
797
- - `#283671` - An empty pivot table is now framed while binding empty data from the remote server.
798
- - The calculated fields can now be generated by a formula whose values are like a negative value divided by zero.
799
-
800
- ## 18.1.54 (2020-05-26)
801
-
802
- ### Pivot Table
803
-
804
- #### Bug Fixes
805
-
806
- - `#F154078` - The Error pop-up is now clearly visible.
807
-
808
- ## 18.1.52 (2020-05-13)
809
-
810
- ### Pivot Table
811
-
812
- #### Bug Fixes
813
-
814
- - `#272044` - Now the localization string of the `null` value isn’t cleared on component refresh.
815
- - `#273266` - The custom number format `#,###;(#,###)` now works in negative numbers.
816
-
817
- ## 17.2.34 (2019-07-11)
818
-
819
- ### Pivot Table
820
-
821
- #### Bug Fixes
822
-
823
- - `#240219` - Menu items in the toolbar now works properly.
824
- - `#239685`, `#240221`, `#240220` - Alignment of the toolbar looks proper when the control is bound to remote data source.
825
-