@syncfusion/ej2-gantt 19.4.55 → 20.1.47-1460716

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 (212) hide show
  1. package/CHANGELOG.md +1072 -1047
  2. package/README.md +75 -75
  3. package/dist/ej2-gantt.umd.min.js +1 -10
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +341 -240
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +713 -598
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +1 -10
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +0 -9
  12. package/dist/ts/components.ts +4 -0
  13. package/dist/ts/gantt/actions/actions.ts +18 -0
  14. package/dist/ts/gantt/actions/cell-edit.ts +606 -0
  15. package/dist/ts/gantt/actions/chart-scroll.ts +167 -0
  16. package/dist/ts/gantt/actions/column-menu.ts +35 -0
  17. package/dist/ts/gantt/actions/column-reorder.ts +52 -0
  18. package/dist/ts/gantt/actions/column-resize.ts +52 -0
  19. package/dist/ts/gantt/actions/connector-line-edit.ts +829 -0
  20. package/dist/ts/gantt/actions/context-menu.ts +754 -0
  21. package/dist/ts/gantt/actions/day-markers.ts +80 -0
  22. package/dist/ts/gantt/actions/dependency.ts +692 -0
  23. package/dist/ts/gantt/actions/dialog-edit.ts +2208 -0
  24. package/dist/ts/gantt/actions/edit.ts +3499 -0
  25. package/dist/ts/gantt/actions/excel-export.ts +61 -0
  26. package/dist/ts/gantt/actions/filter.ts +302 -0
  27. package/dist/ts/gantt/actions/keyboard.ts +306 -0
  28. package/dist/ts/gantt/actions/pdf-export.ts +214 -0
  29. package/dist/ts/gantt/actions/rowdragdrop.ts +839 -0
  30. package/dist/ts/gantt/actions/selection.ts +536 -0
  31. package/dist/ts/gantt/actions/sort.ts +98 -0
  32. package/dist/ts/gantt/actions/taskbar-edit.ts +1940 -0
  33. package/dist/ts/gantt/actions/toolbar.ts +489 -0
  34. package/dist/ts/gantt/actions/virtual-scroll.ts +60 -0
  35. package/dist/ts/gantt/base/common.ts +9 -0
  36. package/dist/ts/gantt/base/constant.ts +13 -0
  37. package/dist/ts/gantt/base/css-constants.ts +148 -0
  38. package/dist/ts/gantt/base/date-processor.ts +1257 -0
  39. package/dist/ts/gantt/base/enum.ts +372 -0
  40. package/dist/ts/gantt/base/gantt-chart.ts +1248 -0
  41. package/dist/ts/gantt/base/gantt.ts +4069 -0
  42. package/dist/ts/gantt/base/interface.ts +955 -0
  43. package/dist/ts/gantt/base/splitter.ts +174 -0
  44. package/dist/ts/gantt/base/task-processor.ts +2217 -0
  45. package/dist/ts/gantt/base/tree-grid.ts +694 -0
  46. package/dist/ts/gantt/base/utils.ts +208 -0
  47. package/dist/ts/gantt/export/export-helper.ts +552 -0
  48. package/dist/ts/gantt/export/pdf-base/dictionary.ts +152 -0
  49. package/dist/ts/gantt/export/pdf-base/pdf-borders.ts +277 -0
  50. package/dist/ts/gantt/export/pdf-base/pdf-grid-table.ts +901 -0
  51. package/dist/ts/gantt/export/pdf-base/pdf-style/gantt-theme.ts +131 -0
  52. package/dist/ts/gantt/export/pdf-base/pdf-style/style.ts +91 -0
  53. package/dist/ts/gantt/export/pdf-base/treegrid-layouter.ts +414 -0
  54. package/dist/ts/gantt/export/pdf-connector-line.ts +422 -0
  55. package/dist/ts/gantt/export/pdf-gantt.ts +282 -0
  56. package/dist/ts/gantt/export/pdf-taskbar.ts +395 -0
  57. package/dist/ts/gantt/export/pdf-timeline.ts +202 -0
  58. package/dist/ts/gantt/export/pdf-treegrid.ts +406 -0
  59. package/dist/ts/gantt/models/add-dialog-field-settings.ts +33 -0
  60. package/dist/ts/gantt/models/column.ts +464 -0
  61. package/dist/ts/gantt/models/day-working-time.ts +22 -0
  62. package/dist/ts/gantt/models/edit-dialog-field-settings.ts +33 -0
  63. package/dist/ts/gantt/models/edit-settings.ts +79 -0
  64. package/dist/ts/gantt/models/event-marker.ts +27 -0
  65. package/dist/ts/gantt/models/filter-settings.ts +53 -0
  66. package/dist/ts/gantt/models/holiday.ts +34 -0
  67. package/dist/ts/gantt/models/label-settings.ts +30 -0
  68. package/dist/ts/gantt/models/models.ts +36 -0
  69. package/dist/ts/gantt/models/resource-fields.ts +38 -0
  70. package/dist/ts/gantt/models/search-settings.ts +77 -0
  71. package/dist/ts/gantt/models/selection-settings.ts +56 -0
  72. package/dist/ts/gantt/models/sort-settings.ts +50 -0
  73. package/dist/ts/gantt/models/splitter-settings.ts +47 -0
  74. package/dist/ts/gantt/models/task-fields.ts +171 -0
  75. package/dist/ts/gantt/models/timeline-settings.ts +112 -0
  76. package/dist/ts/gantt/models/tooltip-settings.ts +46 -0
  77. package/dist/ts/gantt/renderer/chart-rows.ts +1838 -0
  78. package/dist/ts/gantt/renderer/connector-line.ts +1025 -0
  79. package/dist/ts/gantt/renderer/edit-tooltip.ts +228 -0
  80. package/dist/ts/gantt/renderer/event-marker.ts +96 -0
  81. package/dist/ts/gantt/renderer/nonworking-day.ts +205 -0
  82. package/dist/ts/gantt/renderer/render.ts +5 -0
  83. package/dist/ts/gantt/renderer/timeline.ts +1397 -0
  84. package/dist/ts/gantt/renderer/tooltip.ts +450 -0
  85. package/dist/ts/gantt/renderer/virtual-content-render.ts +50 -0
  86. package/license +9 -9
  87. package/package.json +80 -80
  88. package/src/gantt/actions/cell-edit.js +2 -1
  89. package/src/gantt/actions/dialog-edit.js +2 -1
  90. package/src/gantt/actions/edit.js +36 -9
  91. package/src/gantt/actions/rowdragdrop.js +37 -15
  92. package/src/gantt/actions/selection.js +3 -2
  93. package/src/gantt/actions/taskbar-edit.js +24 -24
  94. package/src/gantt/base/date-processor.js +0 -1
  95. package/src/gantt/base/gantt-chart.js +36 -5
  96. package/src/gantt/base/gantt-model.d.ts +779 -779
  97. package/src/gantt/base/gantt.d.ts +27 -27
  98. package/src/gantt/base/gantt.js +35 -76
  99. package/src/gantt/base/splitter.js +1 -0
  100. package/src/gantt/base/task-processor.js +13 -13
  101. package/src/gantt/base/tree-grid.js +3 -1
  102. package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
  103. package/src/gantt/export/pdf-connector-line.js +11 -11
  104. package/src/gantt/export/pdf-gantt.js +24 -24
  105. package/src/gantt/export/pdf-taskbar.js +11 -11
  106. package/src/gantt/export/pdf-treegrid.js +13 -13
  107. package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
  108. package/src/gantt/models/add-dialog-field-settings.js +19 -19
  109. package/src/gantt/models/day-working-time-model.d.ts +11 -11
  110. package/src/gantt/models/day-working-time.js +19 -19
  111. package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
  112. package/src/gantt/models/edit-dialog-field-settings.js +19 -19
  113. package/src/gantt/models/edit-settings-model.d.ts +50 -50
  114. package/src/gantt/models/edit-settings.js +19 -19
  115. package/src/gantt/models/event-marker-model.d.ts +16 -16
  116. package/src/gantt/models/event-marker.js +19 -19
  117. package/src/gantt/models/filter-settings-model.d.ts +34 -34
  118. package/src/gantt/models/filter-settings.js +19 -19
  119. package/src/gantt/models/holiday-model.d.ts +21 -21
  120. package/src/gantt/models/holiday.js +19 -19
  121. package/src/gantt/models/label-settings-model.d.ts +16 -16
  122. package/src/gantt/models/label-settings.js +19 -19
  123. package/src/gantt/models/resource-fields-model.d.ts +21 -21
  124. package/src/gantt/models/resource-fields.js +19 -19
  125. package/src/gantt/models/search-settings-model.d.ts +56 -56
  126. package/src/gantt/models/search-settings.js +19 -19
  127. package/src/gantt/models/selection-settings-model.d.ts +35 -35
  128. package/src/gantt/models/selection-settings.js +19 -19
  129. package/src/gantt/models/sort-settings-model.d.ts +24 -24
  130. package/src/gantt/models/sort-settings.js +19 -19
  131. package/src/gantt/models/splitter-settings-model.d.ts +30 -30
  132. package/src/gantt/models/splitter-settings.js +19 -19
  133. package/src/gantt/models/task-fields-model.d.ts +110 -110
  134. package/src/gantt/models/task-fields.js +19 -19
  135. package/src/gantt/models/timeline-settings-model.d.ts +71 -71
  136. package/src/gantt/models/timeline-settings.js +19 -19
  137. package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
  138. package/src/gantt/models/tooltip-settings.js +19 -19
  139. package/src/gantt/renderer/chart-rows.js +49 -37
  140. package/src/gantt/renderer/connector-line.js +22 -18
  141. package/src/gantt/renderer/event-marker.js +1 -0
  142. package/src/gantt/renderer/nonworking-day.js +13 -6
  143. package/src/gantt/renderer/timeline.d.ts +1 -0
  144. package/src/gantt/renderer/timeline.js +51 -12
  145. package/src/gantt/renderer/tooltip.js +11 -3
  146. package/styles/bootstrap-dark.css +442 -427
  147. package/styles/bootstrap.css +442 -433
  148. package/styles/bootstrap4.css +454 -479
  149. package/styles/bootstrap5-dark.css +457 -433
  150. package/styles/bootstrap5.css +457 -433
  151. package/styles/fabric-dark.css +438 -421
  152. package/styles/fabric.css +445 -428
  153. package/styles/fluent-dark.css +1938 -0
  154. package/styles/fluent-dark.scss +1 -0
  155. package/styles/fluent.css +1938 -0
  156. package/styles/fluent.scss +1 -0
  157. package/styles/gantt/_all.scss +2 -2
  158. package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
  159. package/styles/gantt/_bootstrap-definition.scss +211 -157
  160. package/styles/gantt/_bootstrap4-definition.scss +213 -158
  161. package/styles/gantt/_bootstrap5-definition.scss +215 -162
  162. package/styles/gantt/_fabric-dark-definition.scss +211 -157
  163. package/styles/gantt/_fabric-definition.scss +211 -157
  164. package/styles/gantt/_fluent-dark-definition.scss +1 -0
  165. package/styles/gantt/_fluent-definition.scss +215 -162
  166. package/styles/gantt/_fusionnew-definition.scss +214 -0
  167. package/styles/gantt/_highcontrast-definition.scss +211 -157
  168. package/styles/gantt/_highcontrast-light-definition.scss +211 -157
  169. package/styles/gantt/_layout.scss +1446 -1027
  170. package/styles/gantt/_material-dark-definition.scss +212 -157
  171. package/styles/gantt/_material-definition.scss +212 -157
  172. package/styles/gantt/_material3-definition.scss +215 -0
  173. package/styles/gantt/_tailwind-definition.scss +215 -161
  174. package/styles/gantt/_theme.scss +702 -668
  175. package/styles/gantt/bootstrap-dark.css +442 -427
  176. package/styles/gantt/bootstrap.css +442 -433
  177. package/styles/gantt/bootstrap4.css +454 -479
  178. package/styles/gantt/bootstrap5-dark.css +457 -433
  179. package/styles/gantt/bootstrap5.css +457 -433
  180. package/styles/gantt/fabric-dark.css +438 -421
  181. package/styles/gantt/fabric.css +445 -428
  182. package/styles/gantt/fluent-dark.css +1938 -0
  183. package/styles/gantt/fluent-dark.scss +22 -0
  184. package/styles/gantt/fluent.css +1938 -0
  185. package/styles/gantt/fluent.scss +22 -0
  186. package/styles/gantt/highcontrast-light.css +405 -405
  187. package/styles/gantt/highcontrast.css +444 -456
  188. package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
  189. package/styles/gantt/icons/_bootstrap.scss +124 -113
  190. package/styles/gantt/icons/_bootstrap4.scss +124 -113
  191. package/styles/gantt/icons/_bootstrap5.scss +124 -112
  192. package/styles/gantt/icons/_fabric-dark.scss +124 -112
  193. package/styles/gantt/icons/_fabric.scss +124 -112
  194. package/styles/gantt/icons/_fluent-dark.scss +1 -0
  195. package/styles/gantt/icons/_fluent.scss +124 -112
  196. package/styles/gantt/icons/_fusionnew.scss +120 -0
  197. package/styles/gantt/icons/_highcontrast.scss +124 -112
  198. package/styles/gantt/icons/_material-dark.scss +124 -112
  199. package/styles/gantt/icons/_material.scss +124 -112
  200. package/styles/gantt/icons/_material3.scss +124 -0
  201. package/styles/gantt/icons/_tailwind-dark.scss +124 -113
  202. package/styles/gantt/icons/_tailwind.scss +124 -113
  203. package/styles/gantt/material-dark.css +446 -417
  204. package/styles/gantt/material.css +445 -419
  205. package/styles/gantt/tailwind-dark.css +452 -482
  206. package/styles/gantt/tailwind.css +449 -479
  207. package/styles/highcontrast-light.css +405 -405
  208. package/styles/highcontrast.css +444 -456
  209. package/styles/material-dark.css +446 -417
  210. package/styles/material.css +445 -419
  211. package/styles/tailwind-dark.css +452 -482
  212. package/styles/tailwind.css +449 -479
package/CHANGELOG.md CHANGED
@@ -1,1047 +1,1072 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Gantt
6
-
7
- #### Bug Fixes
8
-
9
- - `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
10
- - `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
11
- - `#365994` - Right and left label template not working in `vue` has been fixed.
12
-
13
- ## 19.4.54 (2022-03-01)
14
-
15
- ### Gantt
16
-
17
- #### Bug Fixes
18
-
19
- - `#366296` - When moving from once cell to another cell using tab key navigation issue has been fixed.
20
- - `#363358`,`F172781` - Drag and drop not working properly after row gets collapsed issue has been fixed.
21
-
22
- ## 19.4.53 (2022-02-22)
23
-
24
- ### Gantt
25
-
26
- #### Bug Fixes
27
-
28
- - `#365463` - Gantt timeline view gets changed when resize the task to left side has been fixed.
29
-
30
- ## 19.4.52 (2022-02-15)
31
-
32
- ### Gantt
33
-
34
- #### Bug Fixes
35
-
36
- - `#360085` - Issue in deleting a task after performing expand collapse action for multiple times has been fixed.
37
- - `#364950` - The `taskLabel` property does not show the task name properly when giving name with space has been fixed.
38
-
39
- ## 19.4.50 (2022-02-08)
40
-
41
- ### Gantt
42
-
43
- #### Bug Fixes
44
-
45
- - `#362011` - Date alignment issue with Gantt Zoom to fit top tier and bottom tier has been fixed.
46
- - `#364643` - Extra fields are added in `dataSource` property for bottom position issue has been fixed.
47
- - `#363210` - Issue in performing edit dialog when we map only segments tab in `editDialogFields` has been fixed.
48
- - `#364723` - Issue in updating `dataSource` property using insert key has been fixed.
49
- - `#364643` - New record added in the top of datasource when row position is set as Bottom has been fixed.
50
-
51
- ## 19.4.47 (2022-01-25)
52
-
53
- ### Gantt
54
-
55
- #### Bug Fixes
56
-
57
- - `#356978` - Issue in disable the initial move of taskbar drag has been fixed.
58
- - `#357647` - Issue in enabling scroll top during load time has been fixed.
59
- - `#360893` - Issue in data source not updating when dragging and dropping child record has been fixed.
60
- - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
61
- - `#361492` - Dragged row does not disappear when the row dropped outside the Gantt issue has been fixed.
62
- - `#360381` - Issue in clicking on date picker while filtering has been fixed.
63
- - `#362566` - Child records do not indent properly when immutable mode is enabled issue has been fixed
64
-
65
- ## 19.4.43 (2022-01-18)
66
-
67
- ### Gantt
68
-
69
- #### Bug Fixes
70
-
71
- - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
72
- - `#360424` - Issue in performing drag and drop when resource is set to null has been fixed.
73
- - `#360085` - Issue in adding new record after performing expand collapse action for multiple times has been fixed.
74
- - `#360081` - Console error thrown when we assign resources to parent tasks has been fixed.
75
-
76
- ## 19.4.42 (2022-01-11)
77
-
78
- ### Gantt
79
-
80
- #### Bug Fixes
81
-
82
- - `#354721` - Issue in rendering milestone based on the milestone mapping in datasource has been fixed.
83
- - `#358683` - Toolbar gets hide after `expandAll` and `collapseAll` is performed issue has been fixed.
84
-
85
- ## 19.4.41 (2022-01-04)
86
-
87
- ### Gantt
88
-
89
- #### Bug Fixes
90
-
91
- - `#359120` - Issue with Gantt Context menu operation after release the connector line outside the Gantt.
92
- - `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
93
- - `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
94
-
95
- ### Gantt
96
-
97
- #### Bug Fixes
98
-
99
- - `#355824, #360027` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
100
- - `#F171256` - Issue in Localization for the word New Task has been fixed.
101
-
102
- ## 19.4.40 (2021-12-28)
103
-
104
- ### Gantt
105
-
106
- #### Bug Fixes
107
-
108
- - `#357340` - Issue with Gantt `selectedRowIndex` property when deleted the selected item in last row.
109
-
110
- ## 19.4.38 (2021-12-17)
111
-
112
- ### Gantt
113
-
114
- #### Bug Fixes
115
-
116
- - `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
117
- - `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
118
- - `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
119
-
120
- #### Breaking Changes
121
-
122
- - Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
123
-
124
- ## 19.3.56 (2021-12-02)
125
-
126
- ### Gantt
127
-
128
- #### Bug Fixes
129
-
130
- - `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
131
- - `#346909` - Issue in disable custom context menu has been fixed.
132
-
133
- ## 19.3.55 (2021-11-23)
134
-
135
- ### Gantt
136
-
137
- #### Bug Fixes
138
-
139
- - `#347753` - Issue in `defaultedit` edit type has been fixed.
140
-
141
- ## 19.3.53 (2021-11-12)
142
-
143
- ### Gantt
144
-
145
- #### Bug Fixes
146
-
147
- - `#342557` - In fixed work type duration update issue has been fixed.
148
-
149
- ## 19.3.48 (2021-11-02)
150
-
151
- ### Gantt
152
-
153
- #### Bug Fixes
154
-
155
- - `#343417` - Issue in updating row index after row drag and drop has been fixed.
156
- - `#346516` - Issue in context menu after cell editing has been fixed.
157
- - `#346736` - Issue in rendering connector points when progress field is not mapped has been fixed.
158
-
159
- ## 19.3.47 (2021-10-26)
160
-
161
- ### Gantt
162
-
163
- #### Bug Fixes
164
-
165
- - `#343991` - Additional parameters are not passed to `BatchUpdate` method when deleting the row issue has been fixed.
166
- - `#344100` - Issue in cancelling the drawing of predecessor line in `actionBegin` event has been fixed.
167
- - `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
168
- - `#341691` - Bring back browser default context menu in dialog editing has been fixed.
169
-
170
- #### Breaking Changes
171
-
172
- - Add and Edit dialog is now rendered as direct child to *body* element.
173
-
174
- ## 19.3.46 (2021-10-19)
175
-
176
- ### Gantt
177
-
178
- #### Bug Fixes
179
-
180
- - `#343417` - Issue in CRUD operations when using datamanager data has been fixed.
181
- - `#340739` - Vertical grid line issue while changing height dynamically has been fixed.
182
- - `#F168970` - Issue in updating Segments data issue has been fixed.
183
-
184
- ## 19.3.45 (2021-10-12)
185
-
186
- ### Gantt
187
-
188
- #### Bug Fixes
189
-
190
- - `#342557` - In fixed work type duration update issue has been fixed.
191
- - `#340406` - Misalignment while using line height property issue has been fixed.
192
- - `#310346` - Pdf export issue while changing date format has been fixed.
193
-
194
- ## 19.3.44 (2021-10-05)
195
-
196
- ### Gantt
197
-
198
- #### New Features
199
-
200
- - `#304621, #322659` - Provided percentage support for height and width of Gantt element.
201
-
202
- ## 19.2.62 (2021-09-14)
203
-
204
- ### Gantt
205
-
206
- #### Bug Fixes
207
-
208
- - `#340421` - In smaller resolution the splitter appeared in wrong position issue has been fixed.
209
- - `#341502` - Indicators disappear when datasource changed dynamically issue has been fixed.
210
-
211
- ## 19.2.60 (2021-09-07)
212
-
213
- ### Gantt
214
-
215
- #### Bug Fixes
216
-
217
- - `#340155` - Dialog closes when pressing insert key issue has been fixed.
218
- - `#333851` - Dynamically changing the holidays issue has been fixed.
219
-
220
- ## 19.2.59 (2021-08-31)
221
-
222
- ### Gantt
223
-
224
- #### Bug Fixes
225
-
226
- - `#339434` - Issue in tooltip has been resolved.
227
-
228
- ## 19.2.57 (2021-08-24)
229
-
230
- ### Gantt
231
-
232
- #### Bug Fixes
233
-
234
- - `#339511` - Issue in maintaining resource selection has been resolved.
235
- - `#338206` - Cleared warnings thrown in Firefox browser.
236
-
237
- ## 19.2.56 (2021-08-17)
238
-
239
- ### Gantt
240
-
241
- #### Bug Fixes
242
-
243
- - `#338587` - Issue in assigning empty data to datasource has been resolved.
244
- - `#335677` - Issue in `expandAtLevel` and `collapseAtLevel` method with virtual scrolling has been resolved.
245
-
246
- ## 19.2.55 (2021-08-11)
247
-
248
- ### Gantt
249
-
250
- #### Bug Fixes
251
-
252
- - `#336211` - Issue with Virtual Scrolling in Firefox browse has been resolved.
253
-
254
- ## 19.2.47 (2021-07-13)
255
-
256
- ### Gantt
257
-
258
- #### Bug Fixes
259
-
260
- - `#331618` - Issue in updating `dataSource` property has been fixed.
261
- - `#333672` - Issue in calculating duration across DST has been fixed.
262
- - Issue in tooltip position has been fixed.
263
-
264
- ## 19.2.46 (2021-07-06)
265
-
266
- ### Gantt
267
-
268
- #### Bug Fixes
269
-
270
- - `#331671` - Right Labels are rendered properly in exported PDF document.
271
- - `#332161` - Issue fixed when drag and drop performed after adding record through context menu.
272
-
273
- ## 19.2.44 (2021-06-30)
274
-
275
- ### Gantt
276
-
277
- #### New Features
278
-
279
- - `#290125` - Provided support to add multiple tasks in Gantt.
280
-
281
- ## 19.1.69 (2021-06-15)
282
-
283
- ### Gantt
284
-
285
- #### Bug Fixes
286
-
287
- - `#330806` - When using `updateTaskId` method with predecessor field is not mapped in the `taskFields` has been fixed.
288
- - At certain zoom level, both halves of year are H1 has been resolved.
289
-
290
- ## 19.1.66 (2021-06-01)
291
-
292
- ### Gantt
293
-
294
- #### Bug Fixes
295
-
296
- - `#328182` - Mismatch between timeline and chart body content has been fixed.
297
- - `#165629` - Notes updated properly in Gantt chart when new task is added.
298
- - `#325331` - Immutable mode issue on data source refresh has been fixed.
299
- - `F163073` - Issue on `RemoteSaveAdaptor` has been fixed.
300
-
301
- ## 19.1.64 (2021-05-19)
302
-
303
- ### Gantt
304
-
305
- #### Bug Fixes
306
-
307
- - `#325587` - Issue while deleting resource on split task has been fixed.
308
- - Issue on dynamically changing the `allowTaskbarEditing` property has been fixed.
309
- - `#165210` - Issue while filtering using Excel type has been fixed.
310
- - `#327043` - Issue in rendering taskbar template has been fixed.
311
-
312
- ## 19.1.63 (2021-05-13)
313
-
314
- ### Gantt
315
-
316
- #### New Features
317
-
318
- - `#264444, #296315` - Provided support for managing date with different time zones.
319
- - `#317529, #320843` - Provide support to cancel the merging of split tasks using client-side event.
320
- - `#307881`, `#309475`, `#325067` - Improved performance while scrolling, when predecessors are mapped.
321
-
322
- #### Bug Fixes
323
-
324
- - `#326155` - Issue in splitting task using public method has been fixed.
325
- - `#325948` - Issue in adding new task with empty string has been fixed.
326
- - `#325585` - Issue while defining columns and dynamically changing the view type has been fixed.
327
-
328
- ## 19.1.59 (2021-05-04)
329
-
330
- ### Gantt
331
-
332
- #### Bug Fixes
333
-
334
- - `#325250` - Progress updated properly in manual scheduling.
335
- - `#324644` - Issue on adding records, when Gantt view is changed has been fixed.
336
- - `#325627` - Editing works fine after when holiday is set dynamically.
337
-
338
- ## 19.1.58 (2021-04-27)
339
-
340
- ### Gantt
341
-
342
- #### Bug Fixes
343
-
344
- - `#324141` - Issue in tooltip rendering position has been fixed.
345
- - `#320979` - Issue on changing data source and timeline settings on same time has been fixed.
346
- - `F163357` - Duplicating issue when a task is dropped below an unassigned resource in the resource view has been fixed.
347
- - `F164497` - Issue in editing end date of a task has been fixed.
348
-
349
- ## 19.1.57 (2021-04-20)
350
-
351
- ### Gantt
352
-
353
- #### Bug Fixes
354
-
355
- - `F164497` - Issue in editing end date of a task has been fixed.
356
-
357
- ## 19.1.56 (2021-04-13)
358
-
359
- ### Gantt
360
-
361
- #### Bug Fixes
362
-
363
- - `#320979` - Provided support to update data source dynamically with `collapseAllParentTasks` and `enableMultiTaskbar` enabled mode.
364
-
365
- ## 19.1.55 (2021-04-06)
366
-
367
- ### Gantt
368
-
369
- #### Bug Fixes
370
-
371
- - `#320882` - Issue on expand/collapse icon in `Resource view` has been fixed.
372
-
373
- ## 19.1.54 (2021-03-30)
374
-
375
- ### Gantt
376
-
377
- #### New Features
378
-
379
- - `#298361` - Provided Observable data binding support in Gantt.
380
- - `#300136` - Provided support for tab like behaviour on cell navigation for cell edit mode.
381
-
382
- ## 18.4.49 (2021-03-23)
383
-
384
- ### Gantt
385
-
386
- #### New Features
387
-
388
- - `#317550` - Provided support to define `valueAccessor` as string.
389
-
390
- #### Bug Fixes
391
-
392
- - Console error when end date of segments is given as string has been fixed.
393
-
394
- ## 18.4.47 (2021-03-09)
395
-
396
- ### Gantt
397
-
398
- #### Bug Fixes
399
-
400
- - `316898` - Maintained additional fields in segments on zooming action.
401
-
402
- ## 18.4.44 (2021-02-23)
403
-
404
- ### Gantt
405
-
406
- #### Bug Fixes
407
-
408
- - `#315501` - Error on closing filter menu while focusing out has been resolved.
409
-
410
- ## 18.4.43 (2021-02-16)
411
-
412
- ### Gantt
413
-
414
- #### Bug Fixes
415
-
416
- - `#306101` - Rendered milestone at default end time on taskbar editing.
417
- - `#313819` - Highlighted bottom tier weekend header cell.
418
-
419
- ### Gantt
420
-
421
- #### Bug Fixes
422
-
423
- - `#311841` - Duplicating records issue while indent action has been resolved.
424
- - `F160722` - Error on rendering editing tooltip has been resolved.
425
- - `F161444` - Error while hiding context menu items has been resolved.
426
-
427
- ## 18.4.41 (2021-02-02)
428
-
429
- ### Gantt
430
-
431
- #### Bug Fixes
432
-
433
- - `#298884` - Error on reorder rows method has been fixed.
434
-
435
- #### New Features
436
-
437
- - `#306342` - Included target element in `actionBegin`, `taskbarEditing`, `contextMenuOpen` events.
438
-
439
- ## 18.4.39 (2021-01-28)
440
-
441
- ### Gantt
442
-
443
- #### New Features
444
-
445
- - `#291192` - Provided Immutable Support to refresh specific rows while performing Gantt actions.
446
-
447
- #### Bug Fixes
448
-
449
- - `F161492` - Console error on converting milestone to task has been fixed.
450
-
451
- ## 18.4.35 (2021-01-19)
452
-
453
- ### Gantt
454
-
455
- #### Bug Fixes
456
-
457
- - `F161492` - Console error on drag and drop action has been fixed.
458
- - `F161492` - Issue on indent action has been fixed.
459
-
460
- ## 18.4.33 (2021-01-05)
461
-
462
- ### Gantt
463
-
464
- #### Bug Fixes
465
-
466
- - `#298884` - Issue on reorder rows method in virtual scroll support has been fixed.
467
-
468
- ## 18.4.32 (2020-12-29)
469
-
470
- ### Gantt
471
-
472
- #### Bug Fixes
473
-
474
- - `F160722` - Issue on editing tooltip template has been fixed.
475
- - `#306971` - HTML encoder issue with notes column has been fixed.
476
- - `#306928` - Timeline width issue on zoom to fit action has been resolved.
477
-
478
- ## 18.4.31 (2020-12-22)
479
-
480
- ### Gantt
481
-
482
- #### Bug Fixes
483
-
484
- - `#306741` - Issue on closing filter menu while focusing out has been fixed.
485
- - `#306556` - Issue on duration field of add dialog has been fixed.
486
- - `#305822` - Issue on updating height on browser resizing has been fixed.
487
- - `#307295` - Issue on updating data source dynamically has been fixed.
488
- - `#305728` - Issue on loading large number of records in resource tab has been fixed.
489
-
490
- ## 18.4.30 (2020-12-17)
491
-
492
- ### Gantt
493
-
494
- #### New Features
495
-
496
- - `#298884` - Provided `Virtual Scroll` support for Gantt.
497
-
498
- #### Bug Fixes
499
-
500
- - `#306090` - Issue on pressing delete key when add/edit dialog is opened has been fixed.
501
- - `#306342` - Included additional field in `taskData.segments`.
502
- - `#305420` - Issue on triggering `rowSelected` event while opening context menu has been fixed.
503
-
504
- ## 18.3.52 (2020-12-01)
505
-
506
- ### Gantt
507
-
508
- #### Bug Fixes
509
-
510
- - `F159625` - Console error on indent action after adding record has been fixed.
511
-
512
- ## 18.3.51 (2020-11-24)
513
-
514
- ### Gantt
515
-
516
- #### Bug Fixes
517
-
518
- - `301606` - Issue in template column when use it as `treeColumnIndex` has been fixed.
519
-
520
- ## 18.3.50 (2020-11-17)
521
-
522
- ### Gantt
523
-
524
- #### Bug Fixes
525
-
526
- - `293889` - Console error in split task when allowTaskbarEditing is disable has been fixed.
527
- - `300744` - Console error on clicking add/edit toolbar has been fixed.
528
- - `301653` - Issue on split task when date is given as string has been fixed.
529
-
530
- ## 18.3.48 (2020-11-11)
531
-
532
- ### Gantt
533
-
534
- #### Bug Fixes
535
-
536
- - `299695` - Issue in left label template has been fixed.
537
- - `F159354` - Issue in locale text of predecessor tooltip has been fixed.
538
- - `300962` - Included timeline property in actionComplete event after zooming action.
539
- - `300804` - Issue in displaying resources when data source is empty has been fixed.
540
-
541
- ## 18.3.47 (2020-11-05)
542
-
543
- ### Gantt
544
-
545
- #### New Features
546
-
547
- - `#292246` - Provided support to split the taskbar into multiple segments through context menu and dialog edit.
548
- - `#282972, #293345` - Provided support to render predecessor and rows properly in different zooming levels and display scaling size.
549
-
550
- #### Bug Fixes
551
-
552
- - `#295381` - Issue on exporting Gantt with partial data has been fixed.
553
- - `#299370` - Issue on restricting dragging action when read only property set to true.
554
- - `F159153` - Issue in localized text of dependency tab default value has been fixed.
555
- - `F158903` - Issue while sorting after add task action has been fixed.
556
-
557
- ## 18.3.42 (2020-10-20)
558
-
559
- ### Gantt
560
-
561
- #### Bug Fixes
562
-
563
- - `#296920` - Issue on rendering Gantt with resources has been fixed.
564
- - `F158128` - Issue on updating DB on `indent` and `outdent` action has been fixed.
565
- - `#291962` - Dates are not filtered with given date format issue has been fixed.
566
- - `#295998` - Events are not triggered properly while perform zoom to fit actions has been fixed.
567
-
568
- ## 18.3.35 (2020-10-01)
569
-
570
- ### Gantt
571
-
572
- #### Bug Fixes
573
-
574
- - `#293528` - Issue when work value is given as decimal values has been fixed.
575
-
576
- ## 18.2.59 (2020-09-21)
577
-
578
- ### Gantt
579
-
580
- #### New Features
581
-
582
- - `#292825` - Provided support to improvement of trigger actions on key press.
583
-
584
- #### Bug Fixes
585
-
586
- - `#293539` - Issue while dynamically updating `allowRowDragAndDrop` gets fixed.
587
- - `#292470` - Issue on edit template in dialog has been fixed.
588
- - `#293749` - Edit `params` not worked properly for progress column has been fixed.
589
-
590
- ## 18.2.57 (2020-09-08)
591
-
592
- ### Gantt
593
-
594
- #### Bug Fixes
595
-
596
- - `#290457` - Issue on customizing the background colour of taskbar in Resource view has been fixed.
597
- - `F157498` - Console error on indenting record after sorting has been fixed.
598
-
599
- ## 18.2.56 (2020-09-01)
600
-
601
- ### Gantt
602
-
603
- #### Bug Fixes
604
-
605
- - `#291158` - Console error on destroy Gantt when allowKeyboard is false has been fixed.
606
- - `#279528` - Dialog dependency drop-down list has existing dependency data has been fixed.
607
-
608
- ## 18.2.55 (2020-08-25)
609
-
610
- ### Gantt
611
-
612
- #### Bug Fixes
613
-
614
- - `#288438` - Tooltip rendering issue has been fixed.
615
- - The issue of the bottom tire format in Chinese culture has been fixed.
616
-
617
- ## 18.2.48 (2020-08-04)
618
-
619
- ### Gantt
620
-
621
- #### New Features
622
-
623
- - `#287282` - Provided support to change viewType of Gantt dynamically.
624
-
625
- #### Bug Fixes
626
-
627
- - `#285626` - Console error while rendering multiple Gantt has been fixed.
628
- - `#285749` - Issue on parent progress calculation while delete child record has been fixed.
629
-
630
- ## 18.2.47 (2020-07-28)
631
-
632
- ### Gantt
633
-
634
- #### Bug Fixes
635
-
636
- - `#284995` - Issue in predecessor lines of exported pdf document has been fixed.
637
- - `#284995` - Content overflow issue in exported pdf document has been fixed.
638
- - `#284052` - Editing issue in Gantt Chart when using DB has been fixed.
639
-
640
- #### New Features
641
-
642
- - `#280004` - Given support to render edit template fields in Gantt edit dialog.
643
-
644
- ## 18.2.46 (2020-07-21)
645
-
646
- ### Gantt
647
-
648
- #### Bug Fixes
649
-
650
- - `#276968` - Column misalignment issue after editing has been fixed.
651
- - `F155689` - Issue on expanding records while mapping expand status of record has been fixed.
652
-
653
- ## 18.2.45 (2020-07-14)
654
-
655
- ### Gantt
656
-
657
- #### Bug Fixes
658
-
659
- - `#278235` - Parent Id is not updated properly on row drag and drop action issue gets resolved.
660
- - `F155766` - PDF export document Gantt timeline issue after zooming has been resolved.
661
- - `#279872` - Issue while updating add and edit dialog fields in action begin events are resolved.
662
- - `#275651` - Issue while dynamically updating `worWeek` gets fixed.
663
- - `#277029` - Updating custom column in action begin event issue gets resolved.
664
-
665
- ## 18.2.44 (2020-07-07)
666
-
667
- ### Gantt
668
-
669
- #### New Features
670
-
671
- - `#245866, #279740, #248032` - Provided support to `render multiple resource tasks` in a row on collapsed state in resource view Gantt.
672
- - `#252413` - Provided support to display the `over allocation` indicators for a resources in resource view Gantt.
673
- - `#262121` - Provided support for `dependency` between two tasks in resource view Gantt.
674
- - `#269776` - Provided support for rendering Gantt as `read only`.
675
-
676
- ## 18.1.59 (2020-06-23)
677
-
678
- ### Gantt
679
-
680
- #### Bug Fixes
681
-
682
- - `#281103`- Taskbar not rendered properly while cancel the new child record by context menu action has been fixed.
683
- - `#281247`- Parent id is not updated on add a child record by context menu has been fixed.
684
- - `#279689` - Issue in displaying values with boolean edit type was fixed.
685
- - `#281102`, `#281154` - Events not triggered with correct request type in indent action has been fixed.
686
- - `#281251` - Not continued to tab onto the next non-Gantt Chart element issue has been fixed.
687
- - `#280070`- Issue on pdf export date format mismatch in Gantt has been fixed.
688
- - `#279234` - Console error while selecting the record issue gets resolved.
689
- - `#279689`- Issue in updating start date with date time picker when custom columns are rendered has been fixed.
690
- - `#280802` - Issue on maintaining parent Id value while adding records with empty data source gets fixed.
691
-
692
- ## 18.1.57 (2020-06-16)
693
-
694
- ### Gantt
695
-
696
- #### New Features
697
-
698
- - `#278724` - Provided support for hiding ID column in dependency tab.
699
-
700
- ## 18.1.55 (2020-06-02)
701
-
702
- ### Gantt
703
-
704
- #### Bug Fixes
705
-
706
- - `#278176` - Zoom in or zoom out toolbar button disabled after zoom to fit action was fixed.
707
- - `#278238` - Action begin event not triggered on finish to finish predecessor was fixed.
708
-
709
- #### New Features
710
-
711
- - `#269776` - Provided support for `expandAtLevel` method and changed `expandByIndex` method parameter as array type.
712
-
713
- ## 18.1.54 (2020-05-26)
714
-
715
- ### Gantt
716
-
717
- #### Bug Fixes
718
-
719
- - `#277029` - Update value not display on edit action issue has been fixed.
720
- - `#276942` - Issue while passing additional parameter to the server side on CRUD operation has been fixed.
721
-
722
- ## 18.1.53 (2020-05-19)
723
-
724
- ### Gantt
725
-
726
- #### Bug Fixes
727
-
728
- - `#39566` - Issue when remove event markers dynamically has been resolved.
729
- - `F154261`,`#276047` - Issue while adding new record with empty data on load time gets resolved.
730
- - `#274206` - Issue in updating resource column gets resolved.
731
-
732
- #### New Features
733
-
734
- - `#273107` - Provided support to render task type on load time.
735
-
736
- #### Breaking Changes
737
-
738
- - Now the resource value in the `taskData` is always array of objects type and it is irrespective of resource value type in data source.
739
-
740
- ## 18.1.52 (2020-05-13)
741
-
742
- ### Gantt
743
-
744
- #### Bug Fixes
745
-
746
- - `#268349` - Issue on maintaining duration data type gets resolved.
747
- - Column filter menu displayed in wrong place has been fixed.
748
-
749
- #### New Features
750
-
751
- - Provided drag and drop support for resource view Gantt.
752
- - `#271392` - Provided support to update task id dynamically.
753
- - `#269776` - Provided support to indent a selected record.
754
-
755
- ## 18.1.48 (2020-05-05)
756
-
757
- ### Gantt
758
-
759
- #### Bug Fixes
760
-
761
- - `#273422` - Date mismatch for parent and child record gets resolved.
762
-
763
- ## 18.1.46 (2020-04-28)
764
-
765
- ### Gantt
766
-
767
- #### Bug Fixes
768
-
769
- - `#273440` - Issue on updating end date value using cell edit gets resolved.
770
- - `#273426` - Issue on validating parent start date on taskbar edit action gets resolved.
771
- - `#274066` - Console error on dragging parent milestone task gets resolved.
772
-
773
- ## 18.1.45 (2020-04-21)
774
-
775
- ### Gantt
776
-
777
- #### Bug Fixes
778
-
779
- - `#268281` - Issue on adding dependency using dialog gets resolved.
780
-
781
- ## 18.1.44 (2020-04-14)
782
-
783
- ### Gantt
784
-
785
- #### Bug Fixes
786
-
787
- - `#270801` - Issue on end date calculations gets resolved.
788
- - `#270563` - Console error throws while taskbar resizing with use of taskbar template has been fixed.
789
- - Issue in mapping custom class of task from data source has been fixed.
790
-
791
- ## 18.1.43 (2020-04-07)
792
-
793
- ### Gantt
794
-
795
- #### New Features
796
-
797
- - `#269693, #269694` - Provided accessibility support for column header and filter.
798
-
799
- #### Bug Fixes
800
-
801
- - `#270384` - Prevented event markers, indicators, holidays, baseline consideration for timeline while doing zoom to fit action.
802
-
803
- ## 18.1.42 (2020-04-01)
804
-
805
- ### Gantt
806
-
807
- #### Bug Fixes
808
-
809
- - `#264099` - Console error on tab key press has been fixed.
810
- - `#269692`,`#269690` - Issue on focussing to the next element has been fixed.
811
- - `#269772` - Prevented taskbar editing tooltip while tooltip is disabled.
812
-
813
- ## 18.1.36-beta (2020-03-19)
814
-
815
- ### Gantt
816
-
817
- #### New Features
818
-
819
- - `#238591`,`#247663`,`#253913`,`#263052`,`F147148`,`F147548`,`F149280` - Provided support for PDF export which exports Gantt data to PDF format.
820
- - `#258677`,`#264570`,`F149280` - Provided support for manual task scheduling which is used to scheduling the task manually without any dependency.
821
- - `F146634` - Provided support for Resource Unit, which indicate the efficiency of resource by each task and Work mapping support which is used to allocate the total number of works to a task.
822
- - `#245866`,`#252413`,`#262485`,`F147349` - Provided support for the Resource view which is used to visualize the list of tasks assigned to each resource in hierarchical order.
823
-
824
- #### Bug Fixes
825
-
826
- - `#263236` - Issue on multi-level dragged parent dropped into last index has been fixed.
827
- - `#264099` - Issue in tab key action in edited state is fixed.
828
-
829
- ## 17.4.46 (2020-01-30)
830
-
831
- ### Gantt
832
-
833
- #### New Features
834
-
835
- - `F148795` - Provided custom editor support in dialog edit.
836
- - `F149069` - Provided support to render parent as milestone.
837
- - `#257320` - Provided support for 'zoom to fit' based on visible tasks alone.
838
-
839
- #### Bug Fixes
840
-
841
- - `F150408` - Baseline tooltip not rendered for milestone tasks has been fixed.
842
- - `#260944` - Issue in preventing taskbar editing has been fixed.
843
-
844
- ## 17.4.44 (2021-01-21)
845
-
846
- ### Gantt
847
-
848
- #### Bug Fixes
849
-
850
- - `#260331` - Typescript declaration issue fixed.
851
-
852
- ## 17.4.41 (2020-01-07)
853
-
854
- ### Gantt
855
-
856
- #### New Features
857
-
858
- - `#253076` - Provided support to focus Gantt on tab key press.
859
-
860
- ## 17.4.40 (2019-12-24)
861
-
862
- ### Gantt
863
-
864
- #### Bug Fixes
865
-
866
- - `F149551` - Handled empty value while editing the numeric edit type field.
867
-
868
- ## 17.4.39 (2019-12-17)
869
-
870
- ### Gantt
871
-
872
- #### Bug Fixes
873
-
874
- - `F147793` - Context menu not closing issue while scrolling on the Gantt element has been fixed.
875
-
876
- #### Breaking Changes
877
-
878
- - Now `dateFormat` default value has been changed to null and the value will be updated by given culture. It is also possible to override `dateFormat` property by custom value.
879
-
880
- #### New Features
881
-
882
- - `#253909` - Provided support for converting a task to milestone by method.
883
- - `F148875` - Provided support for disabling column editing on dialog popup.
884
- - `F146587` - Provided support for taskbarClick event in Gantt.
885
- - `F146585` - Provided support for mouseHover event in Gantt.
886
-
887
- ## 17.3.30 (2019-12-03)
888
-
889
- ### Gantt
890
-
891
- #### Bug Fixes
892
-
893
- - `#253076` - Accessibility issues in Gantt has been fixed.
894
-
895
- ## 17.3.29 (2019-11-26)
896
-
897
- ### Gantt
898
-
899
- #### Bug Fixes
900
-
901
- - `F149069` - Parent taskbar alignment issue while rendering with single milestone child record has been fixed.
902
- - `F149070` - Key navigation disable issue on Tree Grid section has been fixed.
903
- - `#255266` - ParentID field not available in taskData field has been fixed.
904
-
905
- ## 17.3.28 (2019-11-19)
906
-
907
- ### Gantt
908
-
909
- #### Bug Fixes
910
-
911
- - `#253912` - Parent taskbar disappearance issue while deleting all its child records has been fixed.
912
-
913
- ## 17.3.19 (2019-10-22)
914
-
915
- ### Gantt
916
-
917
- #### Bug Fixes
918
-
919
- - `249581` - Browser hangs issue while change schedule mode to year has been fixed.
920
- - `252195` - Issue on forEach method iteration in IE11 has been fixed.
921
-
922
- ## 17.3.14 (2019-10-03)
923
-
924
- ### Gantt
925
-
926
- #### Bug Fixes
927
-
928
- - `F147755` - Chart part disappearing issue when splitter position value greater than control width has been fixed.
929
-
930
- ## 17.3.9-beta (2019-09-20)
931
-
932
- ### Gantt
933
-
934
- #### Bug Fixes
935
-
936
- - `#245866` - Alignment issue with `height` property value as `auto` has been fixed.
937
- - `F145725` - Issue with cell editing on newly added record has been fixed.
938
- - `#246761` - Issue while providing date field value with empty string value and invalid date values has been fixed.
939
- - `#247124` - Issue while loading Gantt SB samples in Mobile devices has been fixed.
940
- - `F147329` - Issue in progress calculation with unscheduled tasks has been fixed.
941
- - `F147380` - Issue with prevent edit dialog has been fixed.
942
-
943
- #### New Features
944
-
945
- - `#233407` - Provided support to perform Excel and CSV exporting in Gantt.
946
-
947
- ## 17.2.46 (2019-08-22)
948
-
949
- ### Gantt
950
-
951
- #### Bug Fixes
952
-
953
- - `F145733` - Alignment issue with header and rows on splitter resizing has been fixed.
954
- - `F146641` - Issue with indicators tooltip support has been fixed.
955
-
956
- ## 17.2.41 (2019-08-14)
957
-
958
- ### Gantt
959
-
960
- #### Bug Fixes
961
-
962
- - `#243770` - Issue in date picker with custom format has been fixed.
963
- - `#243238` - Included current edited data in `actionComplete` event arguments.
964
-
965
- ## 17.2.40 (2019-08-06)
966
-
967
- ### Gantt
968
-
969
- #### Bug Fixes
970
-
971
- - #F145936 - Custom column values not updated in data source on Editing has been fixed.
972
- - Lexical declaration issues in es2015 has been fixed.
973
-
974
- ## 17.2.36 (2019-07-24)
975
-
976
- ### Gantt
977
-
978
- #### Bug Fixes
979
-
980
- - #241781 - Gantt task-data property missing in template data issue has been fixed.
981
-
982
- ## 17.2.28-beta (2019-06-27)
983
-
984
- ### Gantt
985
-
986
- #### Bug Fixes
987
-
988
- - #238228 - Issue while rendering tooltip with smaller duration has been fixed.
989
-
990
- #### New Features
991
-
992
- - Now Gantt supports context menu to perform various action.
993
- - Provided support to perform timeline zoom in, zoom out and zoom to fit actions in Gantt.
994
- - Provided key interaction support in Gantt.
995
-
996
- ## 17.1.49 (2019-05-29)
997
-
998
- ### Gantt
999
-
1000
- #### Bug Fixes
1001
-
1002
- - #F144145 - Task Id duplication issue while adding new record has been fixed.
1003
-
1004
- ## 17.1.47 (2019-05-14)
1005
-
1006
- ### Gantt
1007
-
1008
- #### Bug Fixes
1009
-
1010
- - #233041 - Alignment issue with timeline and vertical lines has been fixed.
1011
-
1012
- #### New Features
1013
-
1014
- - #F143360 - Provided support to refresh the `dataSource` dynamically.
1015
-
1016
- ## 17.1.43 (2019-04-30)
1017
-
1018
- ### Gantt
1019
-
1020
- #### Bug Fixes
1021
-
1022
- - Bug fixes included.
1023
-
1024
- ## 17.1.40 (2019-04-09)
1025
-
1026
- ### Gantt
1027
-
1028
- #### Bug Fixes
1029
-
1030
- - Internal bug fixes included.
1031
-
1032
- ## 17.1.32-beta (2019-03-13)
1033
-
1034
- ### Gantt
1035
-
1036
- - **Data sources** – Bind hierarchical or self-referential data to Gantt chart with an array of JavaScript objects or DataManager.
1037
- - **Timeline** – Display timescale from minutes to decades easily, and also display custom texts in the timeline units. Timeline can be displayed in either one-tier or two-tier layout.
1038
- - **Customizable Taskbars** – Display various tasks in a project using child taskbar, summary taskbar and milestone UI, that can also be customized with templates.
1039
- - **Unscheduled tasks** Support for displaying tasks with undefined start date, end date or duration in a project.
1040
- - **Baselines** – Display the deviations between planned dates and actual dates of a task in a project using baselines.
1041
- - **CRUD actions** – Provides the options to dynamically insert, delete and update tasks using columns, dialog and taskbar editing options.
1042
- - **Task dependency** – Define or update the dependencies between the tasks in a project with four types of task dependencies Finish – Start, Start – Finish, Finish – Finish, Start – Start.
1043
- - **Markers and indicators** - Support for displaying indicators and flags along with taskbars and task labels. Also map important events in a project using event marker.
1044
- - **Filtering** – Offers filtering the Gantt content using column menu filtering along with toolbar search box.
1045
- - **Customizable columns** – Customize the columns and add custom columns to Gantt chart at initialization through column property.
1046
- - **Enriched UI** – Support for Material, bootstrap, fabric and high contrast themes along with other UI options like holidays support, vertical and horizontal grid lines support and so on.
1047
- - **Localization** - Provides inherent support to localize the UI.
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## 20.1.47 (2022-04-04)
6
+
7
+ ### Gantt
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#300959` - Provided support to fill empty space with extended timeline in zoom out action.
12
+ - `#371372` - Unable to change end Date of manual parent task issue has been fixed.
13
+ - `#363003` - Child mapping order not maintained in data source property issue has been fixed.
14
+
15
+ ## 19.4.56 (2022-03-15)
16
+
17
+ ### Gantt
18
+
19
+ #### Bug Fixes
20
+
21
+ - `#369264` - Event marker labels not visible when there is single record has been fixed
22
+ - `#362146` - Row customization using `rowDataBound` event in `enableImmutableMode` issue has been fixed
23
+ - `#363336` - Child records not updated properly in specific index issue has been fixed.
24
+ - `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
25
+ - `#363752` - Issue in assigning custom zooming levels in `load` event has been fixed.
26
+ - `#368549` - Gantt chart indentation issue while adding a child task has been fixed.
27
+ - `#359455` - Issue in giving height as view port for parent container has been fixed.
28
+
29
+ ## 19.4.55 (2022-03-08)
30
+
31
+ ### Gantt
32
+
33
+ #### Bug Fixes
34
+
35
+ - `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
36
+ - `#365994` - Right and left label template not working in `vue` has been fixed.
37
+
38
+ ## 19.4.54 (2022-03-01)
39
+
40
+ ### Gantt
41
+
42
+ #### Bug Fixes
43
+
44
+ - `#366296` - When moving from once cell to another cell using tab key navigation issue has been fixed.
45
+ - `#363358`,`F172781` - Drag and drop not working properly after row gets collapsed issue has been fixed.
46
+
47
+ ## 19.4.53 (2022-02-22)
48
+
49
+ ### Gantt
50
+
51
+ #### Bug Fixes
52
+
53
+ - `#365463` - Gantt timeline view gets changed when resize the task to left side has been fixed.
54
+
55
+ ## 19.4.52 (2022-02-15)
56
+
57
+ ### Gantt
58
+
59
+ #### Bug Fixes
60
+
61
+ - `#360085` - Issue in deleting a task after performing expand collapse action for multiple times has been fixed.
62
+ - `#364950` - The `taskLabel` property does not show the task name properly when giving name with space has been fixed.
63
+
64
+ ## 19.4.50 (2022-02-08)
65
+
66
+ ### Gantt
67
+
68
+ #### Bug Fixes
69
+
70
+ - `#362011` - Date alignment issue with Gantt Zoom to fit top tier and bottom tier has been fixed.
71
+ - `#364643` - Extra fields are added in `dataSource` property for bottom position issue has been fixed.
72
+ - `#363210` - Issue in performing edit dialog when we map only segments tab in `editDialogFields` has been fixed.
73
+ - `#364723` - Issue in updating `dataSource` property using insert key has been fixed.
74
+ - `#364643` - New record added in the top of datasource when row position is set as Bottom has been fixed.
75
+
76
+ ## 19.4.47 (2022-01-25)
77
+
78
+ ### Gantt
79
+
80
+ #### Bug Fixes
81
+
82
+ - `#356978` - Issue in disable the initial move of taskbar drag has been fixed.
83
+ - `#357647` - Issue in enabling scroll top during load time has been fixed.
84
+ - `#360893` - Issue in data source not updating when dragging and dropping child record has been fixed.
85
+ - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
86
+ - `#361492` - Dragged row does not disappear when the row dropped outside the Gantt issue has been fixed.
87
+ - `#360381` - Issue in clicking on date picker while filtering has been fixed.
88
+ - `#362566` - Child records do not indent properly when immutable mode is enabled issue has been fixed
89
+
90
+ ## 19.4.43 (2022-01-18)
91
+
92
+ ### Gantt
93
+
94
+ #### Bug Fixes
95
+
96
+ - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
97
+ - `#360424` - Issue in performing drag and drop when resource is set to null has been fixed.
98
+ - `#360085` - Issue in adding new record after performing expand collapse action for multiple times has been fixed.
99
+ - `#360081` - Console error thrown when we assign resources to parent tasks has been fixed.
100
+
101
+ ## 19.4.42 (2022-01-11)
102
+
103
+ ### Gantt
104
+
105
+ #### Bug Fixes
106
+
107
+ - `#354721` - Issue in rendering milestone based on the milestone mapping in datasource has been fixed.
108
+ - `#358683` - Toolbar gets hide after `expandAll` and `collapseAll` is performed issue has been fixed.
109
+
110
+ ## 19.4.41 (2022-01-04)
111
+
112
+ ### Gantt
113
+
114
+ #### Bug Fixes
115
+
116
+ - `#359120` - Issue with Gantt Context menu operation after release the connector line outside the Gantt.
117
+ - `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
118
+ - `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
119
+
120
+ ### Gantt
121
+
122
+ #### Bug Fixes
123
+
124
+ - `#355824, #360027` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
125
+ - `#F171256` - Issue in Localization for the word New Task has been fixed.
126
+
127
+ ## 19.4.40 (2021-12-28)
128
+
129
+ ### Gantt
130
+
131
+ #### Bug Fixes
132
+
133
+ - `#357340` - Issue with Gantt `selectedRowIndex` property when deleted the selected item in last row.
134
+
135
+ ## 19.4.38 (2021-12-17)
136
+
137
+ ### Gantt
138
+
139
+ #### Bug Fixes
140
+
141
+ - `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
142
+ - `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
143
+ - `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
144
+
145
+ #### Breaking Changes
146
+
147
+ - Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
148
+
149
+ ## 19.3.56 (2021-12-02)
150
+
151
+ ### Gantt
152
+
153
+ #### Bug Fixes
154
+
155
+ - `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
156
+ - `#346909` - Issue in disable custom context menu has been fixed.
157
+
158
+ ## 19.3.55 (2021-11-23)
159
+
160
+ ### Gantt
161
+
162
+ #### Bug Fixes
163
+
164
+ - `#347753` - Issue in `defaultedit` edit type has been fixed.
165
+
166
+ ## 19.3.53 (2021-11-12)
167
+
168
+ ### Gantt
169
+
170
+ #### Bug Fixes
171
+
172
+ - `#342557` - In fixed work type duration update issue has been fixed.
173
+
174
+ ## 19.3.48 (2021-11-02)
175
+
176
+ ### Gantt
177
+
178
+ #### Bug Fixes
179
+
180
+ - `#343417` - Issue in updating row index after row drag and drop has been fixed.
181
+ - `#346516` - Issue in context menu after cell editing has been fixed.
182
+ - `#346736` - Issue in rendering connector points when progress field is not mapped has been fixed.
183
+
184
+ ## 19.3.47 (2021-10-26)
185
+
186
+ ### Gantt
187
+
188
+ #### Bug Fixes
189
+
190
+ - `#343991` - Additional parameters are not passed to `BatchUpdate` method when deleting the row issue has been fixed.
191
+ - `#344100` - Issue in cancelling the drawing of predecessor line in `actionBegin` event has been fixed.
192
+ - `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
193
+ - `#341691` - Bring back browser default context menu in dialog editing has been fixed.
194
+
195
+ #### Breaking Changes
196
+
197
+ - Add and Edit dialog is now rendered as direct child to *body* element.
198
+
199
+ ## 19.3.46 (2021-10-19)
200
+
201
+ ### Gantt
202
+
203
+ #### Bug Fixes
204
+
205
+ - `#343417` - Issue in CRUD operations when using datamanager data has been fixed.
206
+ - `#340739` - Vertical grid line issue while changing height dynamically has been fixed.
207
+ - `#F168970` - Issue in updating Segments data issue has been fixed.
208
+
209
+ ## 19.3.45 (2021-10-12)
210
+
211
+ ### Gantt
212
+
213
+ #### Bug Fixes
214
+
215
+ - `#342557` - In fixed work type duration update issue has been fixed.
216
+ - `#340406` - Misalignment while using line height property issue has been fixed.
217
+ - `#310346` - Pdf export issue while changing date format has been fixed.
218
+
219
+ ## 19.3.44 (2021-10-05)
220
+
221
+ ### Gantt
222
+
223
+ #### New Features
224
+
225
+ - `#304621, #322659` - Provided percentage support for height and width of Gantt element.
226
+
227
+ ## 19.2.62 (2021-09-14)
228
+
229
+ ### Gantt
230
+
231
+ #### Bug Fixes
232
+
233
+ - `#340421` - In smaller resolution the splitter appeared in wrong position issue has been fixed.
234
+ - `#341502` - Indicators disappear when datasource changed dynamically issue has been fixed.
235
+
236
+ ## 19.2.60 (2021-09-07)
237
+
238
+ ### Gantt
239
+
240
+ #### Bug Fixes
241
+
242
+ - `#340155` - Dialog closes when pressing insert key issue has been fixed.
243
+ - `#333851` - Dynamically changing the holidays issue has been fixed.
244
+
245
+ ## 19.2.59 (2021-08-31)
246
+
247
+ ### Gantt
248
+
249
+ #### Bug Fixes
250
+
251
+ - `#339434` - Issue in tooltip has been resolved.
252
+
253
+ ## 19.2.57 (2021-08-24)
254
+
255
+ ### Gantt
256
+
257
+ #### Bug Fixes
258
+
259
+ - `#339511` - Issue in maintaining resource selection has been resolved.
260
+ - `#338206` - Cleared warnings thrown in Firefox browser.
261
+
262
+ ## 19.2.56 (2021-08-17)
263
+
264
+ ### Gantt
265
+
266
+ #### Bug Fixes
267
+
268
+ - `#338587` - Issue in assigning empty data to datasource has been resolved.
269
+ - `#335677` - Issue in `expandAtLevel` and `collapseAtLevel` method with virtual scrolling has been resolved.
270
+
271
+ ## 19.2.55 (2021-08-11)
272
+
273
+ ### Gantt
274
+
275
+ #### Bug Fixes
276
+
277
+ - `#336211` - Issue with Virtual Scrolling in Firefox browse has been resolved.
278
+
279
+ ## 19.2.47 (2021-07-13)
280
+
281
+ ### Gantt
282
+
283
+ #### Bug Fixes
284
+
285
+ - `#331618` - Issue in updating `dataSource` property has been fixed.
286
+ - `#333672` - Issue in calculating duration across DST has been fixed.
287
+ - Issue in tooltip position has been fixed.
288
+
289
+ ## 19.2.46 (2021-07-06)
290
+
291
+ ### Gantt
292
+
293
+ #### Bug Fixes
294
+
295
+ - `#331671` - Right Labels are rendered properly in exported PDF document.
296
+ - `#332161` - Issue fixed when drag and drop performed after adding record through context menu.
297
+
298
+ ## 19.2.44 (2021-06-30)
299
+
300
+ ### Gantt
301
+
302
+ #### New Features
303
+
304
+ - `#290125` - Provided support to add multiple tasks in Gantt.
305
+
306
+ ## 19.1.69 (2021-06-15)
307
+
308
+ ### Gantt
309
+
310
+ #### Bug Fixes
311
+
312
+ - `#330806` - When using `updateTaskId` method with predecessor field is not mapped in the `taskFields` has been fixed.
313
+ - At certain zoom level, both halves of year are H1 has been resolved.
314
+
315
+ ## 19.1.66 (2021-06-01)
316
+
317
+ ### Gantt
318
+
319
+ #### Bug Fixes
320
+
321
+ - `#328182` - Mismatch between timeline and chart body content has been fixed.
322
+ - `#165629` - Notes updated properly in Gantt chart when new task is added.
323
+ - `#325331` - Immutable mode issue on data source refresh has been fixed.
324
+ - `F163073` - Issue on `RemoteSaveAdaptor` has been fixed.
325
+
326
+ ## 19.1.64 (2021-05-19)
327
+
328
+ ### Gantt
329
+
330
+ #### Bug Fixes
331
+
332
+ - `#325587` - Issue while deleting resource on split task has been fixed.
333
+ - Issue on dynamically changing the `allowTaskbarEditing` property has been fixed.
334
+ - `#165210` - Issue while filtering using Excel type has been fixed.
335
+ - `#327043` - Issue in rendering taskbar template has been fixed.
336
+
337
+ ## 19.1.63 (2021-05-13)
338
+
339
+ ### Gantt
340
+
341
+ #### New Features
342
+
343
+ - `#264444, #296315` - Provided support for managing date with different time zones.
344
+ - `#317529, #320843` - Provide support to cancel the merging of split tasks using client-side event.
345
+ - `#307881`, `#309475`, `#325067` - Improved performance while scrolling, when predecessors are mapped.
346
+
347
+ #### Bug Fixes
348
+
349
+ - `#326155` - Issue in splitting task using public method has been fixed.
350
+ - `#325948` - Issue in adding new task with empty string has been fixed.
351
+ - `#325585` - Issue while defining columns and dynamically changing the view type has been fixed.
352
+
353
+ ## 19.1.59 (2021-05-04)
354
+
355
+ ### Gantt
356
+
357
+ #### Bug Fixes
358
+
359
+ - `#325250` - Progress updated properly in manual scheduling.
360
+ - `#324644` - Issue on adding records, when Gantt view is changed has been fixed.
361
+ - `#325627` - Editing works fine after when holiday is set dynamically.
362
+
363
+ ## 19.1.58 (2021-04-27)
364
+
365
+ ### Gantt
366
+
367
+ #### Bug Fixes
368
+
369
+ - `#324141` - Issue in tooltip rendering position has been fixed.
370
+ - `#320979` - Issue on changing data source and timeline settings on same time has been fixed.
371
+ - `F163357` - Duplicating issue when a task is dropped below an unassigned resource in the resource view has been fixed.
372
+ - `F164497` - Issue in editing end date of a task has been fixed.
373
+
374
+ ## 19.1.57 (2021-04-20)
375
+
376
+ ### Gantt
377
+
378
+ #### Bug Fixes
379
+
380
+ - `F164497` - Issue in editing end date of a task has been fixed.
381
+
382
+ ## 19.1.56 (2021-04-13)
383
+
384
+ ### Gantt
385
+
386
+ #### Bug Fixes
387
+
388
+ - `#320979` - Provided support to update data source dynamically with `collapseAllParentTasks` and `enableMultiTaskbar` enabled mode.
389
+
390
+ ## 19.1.55 (2021-04-06)
391
+
392
+ ### Gantt
393
+
394
+ #### Bug Fixes
395
+
396
+ - `#320882` - Issue on expand/collapse icon in `Resource view` has been fixed.
397
+
398
+ ## 19.1.54 (2021-03-30)
399
+
400
+ ### Gantt
401
+
402
+ #### New Features
403
+
404
+ - `#298361` - Provided Observable data binding support in Gantt.
405
+ - `#300136` - Provided support for tab like behaviour on cell navigation for cell edit mode.
406
+
407
+ ## 18.4.49 (2021-03-23)
408
+
409
+ ### Gantt
410
+
411
+ #### New Features
412
+
413
+ - `#317550` - Provided support to define `valueAccessor` as string.
414
+
415
+ #### Bug Fixes
416
+
417
+ - Console error when end date of segments is given as string has been fixed.
418
+
419
+ ## 18.4.47 (2021-03-09)
420
+
421
+ ### Gantt
422
+
423
+ #### Bug Fixes
424
+
425
+ - `316898` - Maintained additional fields in segments on zooming action.
426
+
427
+ ## 18.4.44 (2021-02-23)
428
+
429
+ ### Gantt
430
+
431
+ #### Bug Fixes
432
+
433
+ - `#315501` - Error on closing filter menu while focusing out has been resolved.
434
+
435
+ ## 18.4.43 (2021-02-16)
436
+
437
+ ### Gantt
438
+
439
+ #### Bug Fixes
440
+
441
+ - `#306101` - Rendered milestone at default end time on taskbar editing.
442
+ - `#313819` - Highlighted bottom tier weekend header cell.
443
+
444
+ ### Gantt
445
+
446
+ #### Bug Fixes
447
+
448
+ - `#311841` - Duplicating records issue while indent action has been resolved.
449
+ - `F160722` - Error on rendering editing tooltip has been resolved.
450
+ - `F161444` - Error while hiding context menu items has been resolved.
451
+
452
+ ## 18.4.41 (2021-02-02)
453
+
454
+ ### Gantt
455
+
456
+ #### Bug Fixes
457
+
458
+ - `#298884` - Error on reorder rows method has been fixed.
459
+
460
+ #### New Features
461
+
462
+ - `#306342` - Included target element in `actionBegin`, `taskbarEditing`, `contextMenuOpen` events.
463
+
464
+ ## 18.4.39 (2021-01-28)
465
+
466
+ ### Gantt
467
+
468
+ #### New Features
469
+
470
+ - `#291192` - Provided Immutable Support to refresh specific rows while performing Gantt actions.
471
+
472
+ #### Bug Fixes
473
+
474
+ - `F161492` - Console error on converting milestone to task has been fixed.
475
+
476
+ ## 18.4.35 (2021-01-19)
477
+
478
+ ### Gantt
479
+
480
+ #### Bug Fixes
481
+
482
+ - `F161492` - Console error on drag and drop action has been fixed.
483
+ - `F161492` - Issue on indent action has been fixed.
484
+
485
+ ## 18.4.33 (2021-01-05)
486
+
487
+ ### Gantt
488
+
489
+ #### Bug Fixes
490
+
491
+ - `#298884` - Issue on reorder rows method in virtual scroll support has been fixed.
492
+
493
+ ## 18.4.32 (2020-12-29)
494
+
495
+ ### Gantt
496
+
497
+ #### Bug Fixes
498
+
499
+ - `F160722` - Issue on editing tooltip template has been fixed.
500
+ - `#306971` - HTML encoder issue with notes column has been fixed.
501
+ - `#306928` - Timeline width issue on zoom to fit action has been resolved.
502
+
503
+ ## 18.4.31 (2020-12-22)
504
+
505
+ ### Gantt
506
+
507
+ #### Bug Fixes
508
+
509
+ - `#306741` - Issue on closing filter menu while focusing out has been fixed.
510
+ - `#306556` - Issue on duration field of add dialog has been fixed.
511
+ - `#305822` - Issue on updating height on browser resizing has been fixed.
512
+ - `#307295` - Issue on updating data source dynamically has been fixed.
513
+ - `#305728` - Issue on loading large number of records in resource tab has been fixed.
514
+
515
+ ## 18.4.30 (2020-12-17)
516
+
517
+ ### Gantt
518
+
519
+ #### New Features
520
+
521
+ - `#298884` - Provided `Virtual Scroll` support for Gantt.
522
+
523
+ #### Bug Fixes
524
+
525
+ - `#306090` - Issue on pressing delete key when add/edit dialog is opened has been fixed.
526
+ - `#306342` - Included additional field in `taskData.segments`.
527
+ - `#305420` - Issue on triggering `rowSelected` event while opening context menu has been fixed.
528
+
529
+ ## 18.3.52 (2020-12-01)
530
+
531
+ ### Gantt
532
+
533
+ #### Bug Fixes
534
+
535
+ - `F159625` - Console error on indent action after adding record has been fixed.
536
+
537
+ ## 18.3.51 (2020-11-24)
538
+
539
+ ### Gantt
540
+
541
+ #### Bug Fixes
542
+
543
+ - `301606` - Issue in template column when use it as `treeColumnIndex` has been fixed.
544
+
545
+ ## 18.3.50 (2020-11-17)
546
+
547
+ ### Gantt
548
+
549
+ #### Bug Fixes
550
+
551
+ - `293889` - Console error in split task when allowTaskbarEditing is disable has been fixed.
552
+ - `300744` - Console error on clicking add/edit toolbar has been fixed.
553
+ - `301653` - Issue on split task when date is given as string has been fixed.
554
+
555
+ ## 18.3.48 (2020-11-11)
556
+
557
+ ### Gantt
558
+
559
+ #### Bug Fixes
560
+
561
+ - `299695` - Issue in left label template has been fixed.
562
+ - `F159354` - Issue in locale text of predecessor tooltip has been fixed.
563
+ - `300962` - Included timeline property in actionComplete event after zooming action.
564
+ - `300804` - Issue in displaying resources when data source is empty has been fixed.
565
+
566
+ ## 18.3.47 (2020-11-05)
567
+
568
+ ### Gantt
569
+
570
+ #### New Features
571
+
572
+ - `#292246` - Provided support to split the taskbar into multiple segments through context menu and dialog edit.
573
+ - `#282972, #293345` - Provided support to render predecessor and rows properly in different zooming levels and display scaling size.
574
+
575
+ #### Bug Fixes
576
+
577
+ - `#295381` - Issue on exporting Gantt with partial data has been fixed.
578
+ - `#299370` - Issue on restricting dragging action when read only property set to true.
579
+ - `F159153` - Issue in localized text of dependency tab default value has been fixed.
580
+ - `F158903` - Issue while sorting after add task action has been fixed.
581
+
582
+ ## 18.3.42 (2020-10-20)
583
+
584
+ ### Gantt
585
+
586
+ #### Bug Fixes
587
+
588
+ - `#296920` - Issue on rendering Gantt with resources has been fixed.
589
+ - `F158128` - Issue on updating DB on `indent` and `outdent` action has been fixed.
590
+ - `#291962` - Dates are not filtered with given date format issue has been fixed.
591
+ - `#295998` - Events are not triggered properly while perform zoom to fit actions has been fixed.
592
+
593
+ ## 18.3.35 (2020-10-01)
594
+
595
+ ### Gantt
596
+
597
+ #### Bug Fixes
598
+
599
+ - `#293528` - Issue when work value is given as decimal values has been fixed.
600
+
601
+ ## 18.2.59 (2020-09-21)
602
+
603
+ ### Gantt
604
+
605
+ #### New Features
606
+
607
+ - `#292825` - Provided support to improvement of trigger actions on key press.
608
+
609
+ #### Bug Fixes
610
+
611
+ - `#293539` - Issue while dynamically updating `allowRowDragAndDrop` gets fixed.
612
+ - `#292470` - Issue on edit template in dialog has been fixed.
613
+ - `#293749` - Edit `params` not worked properly for progress column has been fixed.
614
+
615
+ ## 18.2.57 (2020-09-08)
616
+
617
+ ### Gantt
618
+
619
+ #### Bug Fixes
620
+
621
+ - `#290457` - Issue on customizing the background colour of taskbar in Resource view has been fixed.
622
+ - `F157498` - Console error on indenting record after sorting has been fixed.
623
+
624
+ ## 18.2.56 (2020-09-01)
625
+
626
+ ### Gantt
627
+
628
+ #### Bug Fixes
629
+
630
+ - `#291158` - Console error on destroy Gantt when allowKeyboard is false has been fixed.
631
+ - `#279528` - Dialog dependency drop-down list has existing dependency data has been fixed.
632
+
633
+ ## 18.2.55 (2020-08-25)
634
+
635
+ ### Gantt
636
+
637
+ #### Bug Fixes
638
+
639
+ - `#288438` - Tooltip rendering issue has been fixed.
640
+ - The issue of the bottom tire format in Chinese culture has been fixed.
641
+
642
+ ## 18.2.48 (2020-08-04)
643
+
644
+ ### Gantt
645
+
646
+ #### New Features
647
+
648
+ - `#287282` - Provided support to change viewType of Gantt dynamically.
649
+
650
+ #### Bug Fixes
651
+
652
+ - `#285626` - Console error while rendering multiple Gantt has been fixed.
653
+ - `#285749` - Issue on parent progress calculation while delete child record has been fixed.
654
+
655
+ ## 18.2.47 (2020-07-28)
656
+
657
+ ### Gantt
658
+
659
+ #### Bug Fixes
660
+
661
+ - `#284995` - Issue in predecessor lines of exported pdf document has been fixed.
662
+ - `#284995` - Content overflow issue in exported pdf document has been fixed.
663
+ - `#284052` - Editing issue in Gantt Chart when using DB has been fixed.
664
+
665
+ #### New Features
666
+
667
+ - `#280004` - Given support to render edit template fields in Gantt edit dialog.
668
+
669
+ ## 18.2.46 (2020-07-21)
670
+
671
+ ### Gantt
672
+
673
+ #### Bug Fixes
674
+
675
+ - `#276968` - Column misalignment issue after editing has been fixed.
676
+ - `F155689` - Issue on expanding records while mapping expand status of record has been fixed.
677
+
678
+ ## 18.2.45 (2020-07-14)
679
+
680
+ ### Gantt
681
+
682
+ #### Bug Fixes
683
+
684
+ - `#278235` - Parent Id is not updated properly on row drag and drop action issue gets resolved.
685
+ - `F155766` - PDF export document Gantt timeline issue after zooming has been resolved.
686
+ - `#279872` - Issue while updating add and edit dialog fields in action begin events are resolved.
687
+ - `#275651` - Issue while dynamically updating `worWeek` gets fixed.
688
+ - `#277029` - Updating custom column in action begin event issue gets resolved.
689
+
690
+ ## 18.2.44 (2020-07-07)
691
+
692
+ ### Gantt
693
+
694
+ #### New Features
695
+
696
+ - `#245866, #279740, #248032` - Provided support to `render multiple resource tasks` in a row on collapsed state in resource view Gantt.
697
+ - `#252413` - Provided support to display the `over allocation` indicators for a resources in resource view Gantt.
698
+ - `#262121` - Provided support for `dependency` between two tasks in resource view Gantt.
699
+ - `#269776` - Provided support for rendering Gantt as `read only`.
700
+
701
+ ## 18.1.59 (2020-06-23)
702
+
703
+ ### Gantt
704
+
705
+ #### Bug Fixes
706
+
707
+ - `#281103`- Taskbar not rendered properly while cancel the new child record by context menu action has been fixed.
708
+ - `#281247`- Parent id is not updated on add a child record by context menu has been fixed.
709
+ - `#279689` - Issue in displaying values with boolean edit type was fixed.
710
+ - `#281102`, `#281154` - Events not triggered with correct request type in indent action has been fixed.
711
+ - `#281251` - Not continued to tab onto the next non-Gantt Chart element issue has been fixed.
712
+ - `#280070`- Issue on pdf export date format mismatch in Gantt has been fixed.
713
+ - `#279234` - Console error while selecting the record issue gets resolved.
714
+ - `#279689`- Issue in updating start date with date time picker when custom columns are rendered has been fixed.
715
+ - `#280802` - Issue on maintaining parent Id value while adding records with empty data source gets fixed.
716
+
717
+ ## 18.1.57 (2020-06-16)
718
+
719
+ ### Gantt
720
+
721
+ #### New Features
722
+
723
+ - `#278724` - Provided support for hiding ID column in dependency tab.
724
+
725
+ ## 18.1.55 (2020-06-02)
726
+
727
+ ### Gantt
728
+
729
+ #### Bug Fixes
730
+
731
+ - `#278176` - Zoom in or zoom out toolbar button disabled after zoom to fit action was fixed.
732
+ - `#278238` - Action begin event not triggered on finish to finish predecessor was fixed.
733
+
734
+ #### New Features
735
+
736
+ - `#269776` - Provided support for `expandAtLevel` method and changed `expandByIndex` method parameter as array type.
737
+
738
+ ## 18.1.54 (2020-05-26)
739
+
740
+ ### Gantt
741
+
742
+ #### Bug Fixes
743
+
744
+ - `#277029` - Update value not display on edit action issue has been fixed.
745
+ - `#276942` - Issue while passing additional parameter to the server side on CRUD operation has been fixed.
746
+
747
+ ## 18.1.53 (2020-05-19)
748
+
749
+ ### Gantt
750
+
751
+ #### Bug Fixes
752
+
753
+ - `#39566` - Issue when remove event markers dynamically has been resolved.
754
+ - `F154261`,`#276047` - Issue while adding new record with empty data on load time gets resolved.
755
+ - `#274206` - Issue in updating resource column gets resolved.
756
+
757
+ #### New Features
758
+
759
+ - `#273107` - Provided support to render task type on load time.
760
+
761
+ #### Breaking Changes
762
+
763
+ - Now the resource value in the `taskData` is always array of objects type and it is irrespective of resource value type in data source.
764
+
765
+ ## 18.1.52 (2020-05-13)
766
+
767
+ ### Gantt
768
+
769
+ #### Bug Fixes
770
+
771
+ - `#268349` - Issue on maintaining duration data type gets resolved.
772
+ - Column filter menu displayed in wrong place has been fixed.
773
+
774
+ #### New Features
775
+
776
+ - Provided drag and drop support for resource view Gantt.
777
+ - `#271392` - Provided support to update task id dynamically.
778
+ - `#269776` - Provided support to indent a selected record.
779
+
780
+ ## 18.1.48 (2020-05-05)
781
+
782
+ ### Gantt
783
+
784
+ #### Bug Fixes
785
+
786
+ - `#273422` - Date mismatch for parent and child record gets resolved.
787
+
788
+ ## 18.1.46 (2020-04-28)
789
+
790
+ ### Gantt
791
+
792
+ #### Bug Fixes
793
+
794
+ - `#273440` - Issue on updating end date value using cell edit gets resolved.
795
+ - `#273426` - Issue on validating parent start date on taskbar edit action gets resolved.
796
+ - `#274066` - Console error on dragging parent milestone task gets resolved.
797
+
798
+ ## 18.1.45 (2020-04-21)
799
+
800
+ ### Gantt
801
+
802
+ #### Bug Fixes
803
+
804
+ - `#268281` - Issue on adding dependency using dialog gets resolved.
805
+
806
+ ## 18.1.44 (2020-04-14)
807
+
808
+ ### Gantt
809
+
810
+ #### Bug Fixes
811
+
812
+ - `#270801` - Issue on end date calculations gets resolved.
813
+ - `#270563` - Console error throws while taskbar resizing with use of taskbar template has been fixed.
814
+ - Issue in mapping custom class of task from data source has been fixed.
815
+
816
+ ## 18.1.43 (2020-04-07)
817
+
818
+ ### Gantt
819
+
820
+ #### New Features
821
+
822
+ - `#269693, #269694` - Provided accessibility support for column header and filter.
823
+
824
+ #### Bug Fixes
825
+
826
+ - `#270384` - Prevented event markers, indicators, holidays, baseline consideration for timeline while doing zoom to fit action.
827
+
828
+ ## 18.1.42 (2020-04-01)
829
+
830
+ ### Gantt
831
+
832
+ #### Bug Fixes
833
+
834
+ - `#264099` - Console error on tab key press has been fixed.
835
+ - `#269692`,`#269690` - Issue on focussing to the next element has been fixed.
836
+ - `#269772` - Prevented taskbar editing tooltip while tooltip is disabled.
837
+
838
+ ## 18.1.36-beta (2020-03-19)
839
+
840
+ ### Gantt
841
+
842
+ #### New Features
843
+
844
+ - `#238591`,`#247663`,`#253913`,`#263052`,`F147148`,`F147548`,`F149280` - Provided support for PDF export which exports Gantt data to PDF format.
845
+ - `#258677`,`#264570`,`F149280` - Provided support for manual task scheduling which is used to scheduling the task manually without any dependency.
846
+ - `F146634` - Provided support for Resource Unit, which indicate the efficiency of resource by each task and Work mapping support which is used to allocate the total number of works to a task.
847
+ - `#245866`,`#252413`,`#262485`,`F147349` - Provided support for the Resource view which is used to visualize the list of tasks assigned to each resource in hierarchical order.
848
+
849
+ #### Bug Fixes
850
+
851
+ - `#263236` - Issue on multi-level dragged parent dropped into last index has been fixed.
852
+ - `#264099` - Issue in tab key action in edited state is fixed.
853
+
854
+ ## 17.4.46 (2020-01-30)
855
+
856
+ ### Gantt
857
+
858
+ #### New Features
859
+
860
+ - `F148795` - Provided custom editor support in dialog edit.
861
+ - `F149069` - Provided support to render parent as milestone.
862
+ - `#257320` - Provided support for 'zoom to fit' based on visible tasks alone.
863
+
864
+ #### Bug Fixes
865
+
866
+ - `F150408` - Baseline tooltip not rendered for milestone tasks has been fixed.
867
+ - `#260944` - Issue in preventing taskbar editing has been fixed.
868
+
869
+ ## 17.4.44 (2021-01-21)
870
+
871
+ ### Gantt
872
+
873
+ #### Bug Fixes
874
+
875
+ - `#260331` - Typescript declaration issue fixed.
876
+
877
+ ## 17.4.41 (2020-01-07)
878
+
879
+ ### Gantt
880
+
881
+ #### New Features
882
+
883
+ - `#253076` - Provided support to focus Gantt on tab key press.
884
+
885
+ ## 17.4.40 (2019-12-24)
886
+
887
+ ### Gantt
888
+
889
+ #### Bug Fixes
890
+
891
+ - `F149551` - Handled empty value while editing the numeric edit type field.
892
+
893
+ ## 17.4.39 (2019-12-17)
894
+
895
+ ### Gantt
896
+
897
+ #### Bug Fixes
898
+
899
+ - `F147793` - Context menu not closing issue while scrolling on the Gantt element has been fixed.
900
+
901
+ #### Breaking Changes
902
+
903
+ - Now `dateFormat` default value has been changed to null and the value will be updated by given culture. It is also possible to override `dateFormat` property by custom value.
904
+
905
+ #### New Features
906
+
907
+ - `#253909` - Provided support for converting a task to milestone by method.
908
+ - `F148875` - Provided support for disabling column editing on dialog popup.
909
+ - `F146587` - Provided support for taskbarClick event in Gantt.
910
+ - `F146585` - Provided support for mouseHover event in Gantt.
911
+
912
+ ## 17.3.30 (2019-12-03)
913
+
914
+ ### Gantt
915
+
916
+ #### Bug Fixes
917
+
918
+ - `#253076` - Accessibility issues in Gantt has been fixed.
919
+
920
+ ## 17.3.29 (2019-11-26)
921
+
922
+ ### Gantt
923
+
924
+ #### Bug Fixes
925
+
926
+ - `F149069` - Parent taskbar alignment issue while rendering with single milestone child record has been fixed.
927
+ - `F149070` - Key navigation disable issue on Tree Grid section has been fixed.
928
+ - `#255266` - ParentID field not available in taskData field has been fixed.
929
+
930
+ ## 17.3.28 (2019-11-19)
931
+
932
+ ### Gantt
933
+
934
+ #### Bug Fixes
935
+
936
+ - `#253912` - Parent taskbar disappearance issue while deleting all its child records has been fixed.
937
+
938
+ ## 17.3.19 (2019-10-22)
939
+
940
+ ### Gantt
941
+
942
+ #### Bug Fixes
943
+
944
+ - `249581` - Browser hangs issue while change schedule mode to year has been fixed.
945
+ - `252195` - Issue on forEach method iteration in IE11 has been fixed.
946
+
947
+ ## 17.3.14 (2019-10-03)
948
+
949
+ ### Gantt
950
+
951
+ #### Bug Fixes
952
+
953
+ - `F147755` - Chart part disappearing issue when splitter position value greater than control width has been fixed.
954
+
955
+ ## 17.3.9-beta (2019-09-20)
956
+
957
+ ### Gantt
958
+
959
+ #### Bug Fixes
960
+
961
+ - `#245866` - Alignment issue with `height` property value as `auto` has been fixed.
962
+ - `F145725` - Issue with cell editing on newly added record has been fixed.
963
+ - `#246761` - Issue while providing date field value with empty string value and invalid date values has been fixed.
964
+ - `#247124` - Issue while loading Gantt SB samples in Mobile devices has been fixed.
965
+ - `F147329` - Issue in progress calculation with unscheduled tasks has been fixed.
966
+ - `F147380` - Issue with prevent edit dialog has been fixed.
967
+
968
+ #### New Features
969
+
970
+ - `#233407` - Provided support to perform Excel and CSV exporting in Gantt.
971
+
972
+ ## 17.2.46 (2019-08-22)
973
+
974
+ ### Gantt
975
+
976
+ #### Bug Fixes
977
+
978
+ - `F145733` - Alignment issue with header and rows on splitter resizing has been fixed.
979
+ - `F146641` - Issue with indicators tooltip support has been fixed.
980
+
981
+ ## 17.2.41 (2019-08-14)
982
+
983
+ ### Gantt
984
+
985
+ #### Bug Fixes
986
+
987
+ - `#243770` - Issue in date picker with custom format has been fixed.
988
+ - `#243238` - Included current edited data in `actionComplete` event arguments.
989
+
990
+ ## 17.2.40 (2019-08-06)
991
+
992
+ ### Gantt
993
+
994
+ #### Bug Fixes
995
+
996
+ - #F145936 - Custom column values not updated in data source on Editing has been fixed.
997
+ - Lexical declaration issues in es2015 has been fixed.
998
+
999
+ ## 17.2.36 (2019-07-24)
1000
+
1001
+ ### Gantt
1002
+
1003
+ #### Bug Fixes
1004
+
1005
+ - #241781 - Gantt task-data property missing in template data issue has been fixed.
1006
+
1007
+ ## 17.2.28-beta (2019-06-27)
1008
+
1009
+ ### Gantt
1010
+
1011
+ #### Bug Fixes
1012
+
1013
+ - #238228 - Issue while rendering tooltip with smaller duration has been fixed.
1014
+
1015
+ #### New Features
1016
+
1017
+ - Now Gantt supports context menu to perform various action.
1018
+ - Provided support to perform timeline zoom in, zoom out and zoom to fit actions in Gantt.
1019
+ - Provided key interaction support in Gantt.
1020
+
1021
+ ## 17.1.49 (2019-05-29)
1022
+
1023
+ ### Gantt
1024
+
1025
+ #### Bug Fixes
1026
+
1027
+ - #F144145 - Task Id duplication issue while adding new record has been fixed.
1028
+
1029
+ ## 17.1.47 (2019-05-14)
1030
+
1031
+ ### Gantt
1032
+
1033
+ #### Bug Fixes
1034
+
1035
+ - #233041 - Alignment issue with timeline and vertical lines has been fixed.
1036
+
1037
+ #### New Features
1038
+
1039
+ - #F143360 - Provided support to refresh the `dataSource` dynamically.
1040
+
1041
+ ## 17.1.43 (2019-04-30)
1042
+
1043
+ ### Gantt
1044
+
1045
+ #### Bug Fixes
1046
+
1047
+ - Bug fixes included.
1048
+
1049
+ ## 17.1.40 (2019-04-09)
1050
+
1051
+ ### Gantt
1052
+
1053
+ #### Bug Fixes
1054
+
1055
+ - Internal bug fixes included.
1056
+
1057
+ ## 17.1.32-beta (2019-03-13)
1058
+
1059
+ ### Gantt
1060
+
1061
+ - **Data sources** – Bind hierarchical or self-referential data to Gantt chart with an array of JavaScript objects or DataManager.
1062
+ - **Timeline** – Display timescale from minutes to decades easily, and also display custom texts in the timeline units. Timeline can be displayed in either one-tier or two-tier layout.
1063
+ - **Customizable Taskbars** – Display various tasks in a project using child taskbar, summary taskbar and milestone UI, that can also be customized with templates.
1064
+ - **Unscheduled tasks** – Support for displaying tasks with undefined start date, end date or duration in a project.
1065
+ - **Baselines** – Display the deviations between planned dates and actual dates of a task in a project using baselines.
1066
+ - **CRUD actions** – Provides the options to dynamically insert, delete and update tasks using columns, dialog and taskbar editing options.
1067
+ - **Task dependency** – Define or update the dependencies between the tasks in a project with four types of task dependencies Finish – Start, Start – Finish, Finish – Finish, Start – Start.
1068
+ - **Markers and indicators** - Support for displaying indicators and flags along with taskbars and task labels. Also map important events in a project using event marker.
1069
+ - **Filtering** – Offers filtering the Gantt content using column menu filtering along with toolbar search box.
1070
+ - **Customizable columns** – Customize the columns and add custom columns to Gantt chart at initialization through column property.
1071
+ - **Enriched UI** – Support for Material, bootstrap, fabric and high contrast themes along with other UI options like holidays support, vertical and horizontal grid lines support and so on.
1072
+ - **Localization** - Provides inherent support to localize the UI.