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

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