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

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