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