@syncfusion/ej2-angular-gantt 31.2.15-ngcc → 31.2.15

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 (44) hide show
  1. package/CHANGELOG.md +2895 -0
  2. package/README.md +9 -2
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
  5. package/esm2020/src/gantt/columns.directive.mjs +90 -0
  6. package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
  7. package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
  8. package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
  9. package/esm2020/src/gantt/gantt-all.module.mjs +74 -0
  10. package/esm2020/src/gantt/gantt.component.mjs +297 -0
  11. package/esm2020/src/gantt/gantt.module.mjs +88 -0
  12. package/esm2020/src/gantt/holidays.directive.mjs +58 -0
  13. package/esm2020/src/gantt/weekworkingtime.directive.mjs +58 -0
  14. package/esm2020/src/index.mjs +12 -0
  15. package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
  16. package/fesm2015/syncfusion-ej2-angular-gantt.mjs +857 -0
  17. package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  18. package/fesm2020/syncfusion-ej2-angular-gantt.mjs +857 -0
  19. package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
  20. package/package.json +20 -7
  21. package/public_api.d.ts +1 -1
  22. package/src/gantt/adddialogfields.directive.d.ts +58 -53
  23. package/src/gantt/columns.directive.d.ts +219 -209
  24. package/src/gantt/dayworkingtime.directive.d.ts +41 -36
  25. package/src/gantt/editdialogfields.directive.d.ts +58 -53
  26. package/src/gantt/eventmarkers.directive.d.ts +47 -42
  27. package/src/gantt/gantt-all.module.d.ts +28 -22
  28. package/src/gantt/gantt.component.d.ts +146 -143
  29. package/src/gantt/gantt.module.d.ts +18 -5
  30. package/src/gantt/holidays.directive.d.ts +51 -46
  31. package/src/gantt/weekworkingtime.directive.d.ts +43 -38
  32. package/src/index.d.ts +11 -11
  33. package/syncfusion-ej2-angular-gantt.d.ts +5 -0
  34. package/@syncfusion/ej2-angular-gantt.es5.js +0 -934
  35. package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
  36. package/@syncfusion/ej2-angular-gantt.js +0 -882
  37. package/@syncfusion/ej2-angular-gantt.js.map +0 -1
  38. package/LICENSE +0 -10
  39. package/dist/ej2-angular-gantt.umd.js +0 -1055
  40. package/dist/ej2-angular-gantt.umd.js.map +0 -1
  41. package/dist/ej2-angular-gantt.umd.min.js +0 -11
  42. package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
  43. package/ej2-angular-gantt.d.ts +0 -5
  44. package/ej2-angular-gantt.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,2895 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ### GanttChart
6
+
7
+ #### Bug fixes
8
+
9
+ - `F159354` - Issue in locale text of predecessor tooltip has been fixed.
10
+
11
+ ## 31.2.10 (2025-11-13)
12
+
13
+ ### GanttChart
14
+
15
+ #### Feature
16
+
17
+ - `#I731224` - Enhanced checkbox selection with virtualization support for large datasets, delivering faster, more accurate multi-selection and smoother CRUD operations.
18
+
19
+ #### Bug fixes
20
+
21
+ - `#I783506` - Fixed the invalid string to date conversion issue in the custom column of the Gantt Chart.
22
+
23
+ ## 31.2.5 (2025-11-04)
24
+
25
+ ### GanttChart
26
+
27
+ #### Bug fixes
28
+
29
+ - `#I777187` - Fixed an issue where offsets were calculated incorrectly when `editSettings` was not configured.
30
+ - `#I778239` - Resolved an issue where rows were inserted in reverse order when multiple rows were dragged and dropped simultaneously.
31
+ - `#I778404` - Resolved unpredictable task shifts and miscalculated dependency offsets in the Gantt chart.
32
+ - `#I778127` - Resolved an issue where navigating with Tab and arrow keys caused duplicate focus highlights on row cells and column headers.
33
+
34
+ - `#I777187` - Fixed an issue where offsets were calculated incorrectly when `editSettings` was not configured.
35
+ - `#I778404` - Resolved unpredictable task shifts and miscalculated dependency offsets in the Gantt chart.
36
+
37
+ ## 31.2.4 (2025-10-28)
38
+
39
+ ### GanttChart
40
+
41
+ #### Bug fixes
42
+
43
+ - `#I771301` - Resolved a console error that occurred during the update of duration field for CRUD and row drag drop actions.
44
+ - `#I778336` - The issue with inconsistent behaviour for editing parent tasks between cell edit and dialog edit modes has been resolved.
45
+
46
+ ## 31.2.3 (2025-10-22)
47
+
48
+ ### GanttChart
49
+
50
+ #### Bug fixes
51
+
52
+ - `#I767416` - Enhanced performance for adding records to large multi-level hierarchical collections, achieving approximately 80% improvement in CRUD operation efficiency.
53
+ - `#I770741` - Resolved an issue where the `modifiedRecords` collection was not correctly updated in the `actionComplete` event arguments.
54
+ - `#I771215` - Corrected date and time validation for milestone tasks during initial load and conversion, ensuring accurate rendering for tasks with dependencies.
55
+
56
+ ## 31.2.2 (2025-10-15)
57
+
58
+ ### GanttChart
59
+
60
+ #### Bug fixes
61
+
62
+ - `#I769900` - Fixed an issue where template columns failed to display correctly after dynamically refreshing the Gantt Chart.
63
+ - `#I769454` - Addressed inconsistent rendering of `dropdown` values in the dependency tab within both `Add` and `Edit` dialog.
64
+
65
+ #### Feature
66
+
67
+ - `#I765000` - Introduced seamless date object conversion and timezone handling for custom columns, editing, and CRUD operations across both remote and local data sources.
68
+
69
+ ## 31.1.23 (2025-10-07)
70
+
71
+ ### GanttChart
72
+
73
+ #### Bug fixes
74
+
75
+ - `#I767142` - Resolved issue where records added via context menu using add `Above` or `Below` options were not displayed after Gantt refresh.
76
+ - `#I769702` - Issue with predecessor values containing spaces not being validated correctly has been fixed.
77
+
78
+ ## 31.1.22 (2025-10-01)
79
+
80
+ ### GanttChart
81
+
82
+ #### Bug fixes
83
+
84
+ - `#I761711` - Resolved an issue where the duration value did not appear in the edit dialog when the duration column was configured with `numericedit`.
85
+ - `#I766224` - The issue with the `modifiedRecords` collection not displaying data properly in the arguments of the `actionComplete` event has been resolved.
86
+ - `#I766986` - The issue of duplicate tasks being created when using indent and outdent actions has been resolved.
87
+ - `#I766218` - The `taskbarBgColor` property is now correctly applied to child records when using the Material 3 theme.
88
+ - `#I766999` - The inconsistency in the `headerText` property between the Grid and Gantt components, which prevented rendering an empty string as header text, has been fixed.
89
+ - `#I766241` - The issue preventing the context menu from opening for parent records in the resource view has been resolved. The context menu can be opened when `args.cancel` is set to false in the `contextMenuOpen` event.
90
+
91
+ - `#I766224` - The issue with the `modifiedRecords` collection not displaying data properly in the arguments of the `actionComplete` event has been resolved.
92
+ - `#I766986` - The issue of duplicate tasks being created when using indent and outdent actions has been resolved.
93
+
94
+ ## 31.1.21 (2025-09-23)
95
+
96
+ ### GanttChart
97
+
98
+ #### Bug fixes
99
+
100
+ - `#I764123` - Resolved an issue where parent task progress values were not displaying in decimal format, even when child tasks were configured with decimal values. Decimal rendering for both parent and child tasks is now properly handled by defining the appropriate format in columns.
101
+ - `#I763016` - The date and time change unexpectedly when using the timezone property during cell edit or add operations issue has been resolved.
102
+ - `#I761818` - The issue with critical path validation not working when two parent tasks are connected via a predecessor has been resolved.
103
+ - `#I757458` - The issue where time converted unnecessarily when the timezone was set to 'UTC' at initial load has been resolved.
104
+ - `#I767390` - The issue where the resource column was not rendering as `dropdown` when dynamically assigning the column collection has been resolved.
105
+
106
+ - `#I764123` - Resolved an issue where parent task progress values were not displaying in decimal format, even when child tasks were configured with decimal values. Decimal rendering for both parent and child tasks is now properly handled by defining the appropriate format in columns.
107
+ - `#I757458` - The issue where time converted unnecessarily when the timezone was set to 'UTC' at initial load has been resolved.
108
+ - `#I767390` - The issue where the resource column was not rendering as `dropdown` when dynamically assigning the column collection has been resolved.
109
+
110
+ ## 31.1.20 (2025-09-10)
111
+
112
+ ### GanttChart
113
+
114
+ #### Bug fixes
115
+
116
+ - `#I762115` - The issue where the Offset value was not updating correctly when a dependency was connected to parent tasks has been resolved.
117
+ - `#I759114` - The issue where the 'Start No Later Than' constraint type was not properly enforced on the Start Date has been resolved.
118
+ - `#I763040` - Cell navigation not working properly when selection is disabled issue has been resolved.
119
+ - `#I759336` - Resolved critical task calculation to use `projectEndDate` as the maximum end date when it is mapped, replacing the previous approach of considering the task's maximum end date.
120
+ - `#I759336` - Resolved an issue where the `workWeek` and `weekWorkingTime` properties were not functioning correctly, causing unresponsiveness during dynamic updates.
121
+
122
+ - `#I762115` - The issue where the Offset value was not updating correctly when a dependency was connected to parent tasks has been resolved.
123
+ - `#I759114` - The issue where the 'Start No Later Than' constraint type was not properly enforced on the Start Date has been resolved.
124
+ - `#I759336` - Resolved an issue where the `workWeek` and `weekWorkingTime` properties were not functioning correctly, causing unresponsiveness during dynamic updates.
125
+
126
+ ## 31.1.18 (2025-09-10)
127
+
128
+ ### GanttChart
129
+
130
+ #### Bug fixes
131
+
132
+ - `#I759097` - The issue where setting the constraint type to "Must Start On" caused the spinner to run continuously when modifying the End Date or Duration has been resolved.
133
+ `#I758384` - Console error occur while add action after hiding column by method issue has been resolved.
134
+ `#I755129` - The `readOnly` property not working for hierarchy data binding issue has been resolved.
135
+ `#I756416` - Console error occur while using different filter options issue has been resolved.
136
+
137
+ - `#I759097` - The issue where setting the constraint type to "Must Start On" caused the spinner to run continuously when modifying the End Date or Duration has been resolved.
138
+ - `#I758384` - Console error occur while add action after hiding column by method issue has been resolved.
139
+ - `#I756416` - Console error occur while using different filter options issue has been resolved.
140
+
141
+ ## 30.1.37 (2025-06-25)
142
+
143
+ ### GanttChart
144
+
145
+ #### Bug fixes
146
+
147
+ - `#I698597` - The issue where the task label font could not be customized using `ganttStyle` in PDF exports of the Gantt chart has been resolved.
148
+ - `#I702960` - Undo action does not work properly when drag and drop the taskbar with timeline virtualization enabled issue has been resolved.
149
+ - `#I703918` - A script error occurred when the context menu was used in resource view after adding a dependency to a newly added record issue has been resolved.
150
+ - `#I702456` - The issue, where the `rowSelecting` event did not trigger correctly when selecting a row using a checkbox, has been resolved.
151
+ - `#I698654`,`#I704950` - The issue of the splitter position dynamically changing, which caused a white space, has been resolved.
152
+
153
+ - `#I703918` - A script error occurred when the context menu was used in resource view after adding a dependency to a newly added record issue has been resolved.
154
+ - `#I702456` - The issue, where the `rowSelecting` event did not trigger correctly when selecting a row using a checkbox, has been resolved.
155
+ - `#I698654` - The issue of the splitter position dynamically changing, which caused a white space, has been resolved.
156
+
157
+ ## 28.2.11 (2025-03-11)
158
+
159
+ ### GanttChart
160
+
161
+ #### Bug fixes
162
+
163
+ `#I693977` - Resolved an issue where the `durationUnit` property did not function correctly when the work field was mapped.
164
+ `#I698273` - Milestone end date is not validated properly during cell editing issue has been resolved.
165
+
166
+ `#I693977` - Resolved an issue where the `durationUnit` property did not function correctly when the work field was mapped.
167
+
168
+ ## 28.2.9 (2025-03-04)
169
+
170
+ ### GanttChart
171
+
172
+ #### Bug fixes
173
+
174
+ `#I689599` - Resolved a console error that occurred when undoing a deleted split task.
175
+ `#I692333` - When the `includeWeekend` property is set to true, the split taskbar cannot be dragged and dropped issue has been resolved.
176
+
177
+ ## 28.2.7 (2025-02-25)
178
+
179
+ ### GanttChart
180
+
181
+ #### Bug fixes
182
+
183
+ - `#I685559` - `updateRecordByID` method does not work when a predecessor dependency value is passed with offset days issue has been resolved.
184
+ - `#I689267` - Console error occurred at initial load when end date not mapped in `taskFields` issue has been resolved.
185
+ - Task not rendered at given time in datasource when `dayWorkingTime` is enabled issue has been resolved.
186
+ - `#I691907` - Incorrect values are saved during edit action of work field with `FixedDuration` and `FixedWork` task types issue has been resolved.
187
+ - `#I690721` - Console error occurs when user map level property in datasource issue has been resolved.
188
+
189
+ - `#I685559` - `updateRecordByID` method does not work when a predecessor dependency value is passed with offset days issue has been resolved.
190
+ - Task not rendered at given time in datasource when `dayWorkingTime` is enabled issue has been resolved.
191
+ - `#I690721` - Console error occurs when user map level property in datasource issue has been resolved.
192
+
193
+ ## 28.2.6 (2025-02-18)
194
+
195
+ ### GanttChart
196
+
197
+ #### Bug fixes
198
+
199
+ - `#I684077` - The console error that occurred while updating a record with start and end dates as strings using the `updateRecordByID` method has been resolved.
200
+ - `#I668559` - Event marker and weekends are rendering incorrect place while using `warsaw` timezone issue has been fixed.
201
+ - `#I683525` - Resource was not included the second time when using edit in column issue has been fixed.
202
+
203
+ - `#I668559` - Event marker and weekends are rendering incorrect place while using `warsaw` timezone issue has been fixed.
204
+
205
+ ## 28.2.5 (2025-02-11)
206
+
207
+ ### GanttChart
208
+
209
+ #### Bug fixes
210
+
211
+ - `#I678529` - When row drag and drop is used, the issue where modified records were not updating properly in the actionComplete event has been fixed.
212
+ - `#I683525` - Resolved a script error that occurred during cell editing of the Resource field when the resource collection was modified through column editing.
213
+
214
+ ## 28.2.4 (2025-02-04)
215
+
216
+ ### GanttChart
217
+
218
+ #### Bug fixes
219
+
220
+ - `#I678529` - Fixed issues where the Work column value was not updating correctly when one resource unit was set to 0 and another to 100. Additionally, resolved an issue in Fixed Duration mapping, where the Work value did not update to 0 when the resource unit was set to 0.
221
+ - `#I682615`,`#I684467` - Duration updated incorrectly while updating record via method issue has been fixed.
222
+ - `#I674922` - Taskbar Drag Issues When Overlapping on the Same Date issue has been fixed.
223
+
224
+ ## 28.2.3 (2025-01-29)
225
+
226
+ ### GanttChart
227
+
228
+ #### Bug fixes
229
+
230
+ - `#I679476` - Delay occurs when sample is loaded with the critical path issue has been fixed.
231
+ - `#I679518` - Invalid dependency lines are displayed when edit settings are not enabled issue has been fixed.
232
+
233
+ ## 28.1.41 (2025-01-21)
234
+
235
+ ### GanttChart
236
+
237
+ #### Bug fixes
238
+
239
+ - `#I665780` - Baseline and taskbar width mismatched when using the same dates for both issue has been fixed.
240
+ - `#I678186` - Decimal work value is updating, when record add issue has been fixed.
241
+ - `#I679179` - Offset value was not calculated properly issue has been fixed.
242
+
243
+ ## 28.1.39 (2024-01-14)
244
+
245
+ ### GanttChart
246
+
247
+ #### Bug fixes
248
+
249
+ - `#I668317` - Timeline tiers get misaligned while using timeline virtualization in `DST` zone issue has been fixed.
250
+ - `#I676849` - When the context menu action is cancel, the added child record is still considered as a parent issue has been fixed.
251
+ - `#I606658` - Taskbar not render correct position when `zoomToFit` issue has been fixed.
252
+ - `#I668145` - A script error is thrown when the Delete Dependency context menu item is clicked issue has been fixed.
253
+ - `#I676845` - Console error occurred while exporting PDF without columns property issue has been fixed.
254
+ - `#I661832` - collapsed records were not in the viewport for the last set of records with a large number of child records, issue has been fixed.
255
+ - `#I664339` - Template not destroyed while zooming action issue has been fixed.
256
+
257
+ - `#I668317` - Timeline tiers get misaligned while using timeline virtualization in `DST` zone issue has been fixed.
258
+ - `#I676849` - When the context menu action is cancel, the added child record is still considered as a parent issue has been fixed.
259
+ - `#I676845` - Console error occurred while exporting PDF without columns property issue has been fixed.
260
+
261
+ ## 28.1.38 (2025-01-07)
262
+
263
+ ### GanttChart
264
+
265
+ #### Bug fixes
266
+
267
+ - `#I668777` - Toolbar visible property not working issue has been fixed.
268
+ - `#I668317` - Timeline tiers get misaligned while using timeline virtualization in `DST` zone issue has been fixed.
269
+ - `#I674918` - When virtualization is enabled, the resource collection does not display properly in the resource tab issue has been fixed.
270
+ - `#I667515` - Horizontal scroll jumps to starting point while scrolling after zooming actions issue has been fixed.
271
+
272
+ - `#I668317` - Timeline tiers get misaligned while using timeline virtualization in `DST` zone issue has been fixed.
273
+ - `#I667515` - Horizontal scroll jumps to starting point while scrolling after zooming actions issue has been fixed.
274
+
275
+ ## 28.1.37 (2024-12-31)
276
+
277
+ ### GanttChart
278
+
279
+ #### Bug fixes
280
+
281
+ - `#I656160` - White space and scrolling issues while using load child on demand has been fixed.
282
+ - `#I668559` - Event marker position is not rendering correctly on the timeline issue has been fixed.
283
+ - `#I665780` - Baseline width is not set properly for decimal duration issue has been fixed.
284
+
285
+ - `#I656160` - White space and scrolling issues while using load child on demand has been fixed.
286
+ - `#I668559` - Event marker position is not rendering correctly on the timeline issue has been fixed.
287
+
288
+ ## 28.1.36 (2024-12-25)
289
+
290
+ ### GanttChart
291
+
292
+ #### Bug fixes
293
+
294
+ - `#I664845`, `#I664429` - Unable to Add Dependency When Task Name Contains a Hyphen issue has been fixed.
295
+ - `#I666904` - When the resource unit is changed, the duration field is not updated issue has been fixed.
296
+ - `#I665780` - Baseline width not validated properly for less than one day issue has been fixed.
297
+ - `#I663274` - Taskbar not rendering properly with fixed work issue has been fixed.
298
+ - `#I663985` - Script error thrown when collapsing the root node with task mode set to custom and `enableMultiTaskbar` enabled issue has been fixed.
299
+ - `#I665270` - Work not calculated correctly on parent task, after child outdent issue has been fixed.
300
+ - `#I662513`, `#F195374` - Console error thrown when scrolling in virtualization sample with `allowSelection` set to false issue has been fixed.
301
+ - `#I666264` - Console error occurred while taskbar drag with null duration issue has been fixed.
302
+
303
+ - `#I664845`, `#I664429` - Unable to Add Dependency When Task Name Contains a Hyphen issue has been fixed.
304
+ - `#I662513` - Console error thrown when scrolling in virtualization sample with `allowSelection` set to false issue has been fixed.
305
+
306
+ ## 28.1.35 (2024-12-18)
307
+
308
+ ### GanttChart
309
+
310
+ #### Bug fixes
311
+
312
+ - `#F195300` - AutoFocus mismatching issue between grid and chart click issue has been fixed.
313
+ - `#I660168` - Vertical scrollbar hides when resizing splitter to left or right issue has been fixed.
314
+ - `#I665389` - Splitter position changes dynamically, but when splitter is manually dragged, position does not update issue has been fixed.
315
+ - `#I663036` - Applied color do not persist in edit dialog's notes tab issue has been fixed.
316
+ - `#I658189` - Tooltip misalignment occurs when the parent element is scrolled issue has been fixed.
317
+ - `#I660498`,`#I659031` - Angular Gantt not working for `Content-Security-Policy` of meta tag issue has been fixed.
318
+ - `#I660467` - Gantt crashes when timezone is set to `berlin` issue has been fixed.
319
+ - `#I664048` - Issue in child-parent predecessor validation issue has been fixed.
320
+ - `#I664336` - Convert to task does not work for milestone task with task type as fixed work issue has been fixed.
321
+
322
+ - `#I660168` - Vertical scrollbar hides when resizing splitter to left or right issue has been fixed.
323
+ - `#I665389` - Splitter position changes dynamically, but when splitter is manually dragged, position does not update issue has been fixed.
324
+ - `#I660498`,`#I659031` - Angular Gantt not working for `Content-Security-Policy` of meta tag issue has been fixed.
325
+ - `#I660467` - Gantt crashes when timezone is set to `berlin` issue has been fixed.
326
+
327
+ ## 28.1.33 (2024-12-12)
328
+
329
+ ### GanttChart
330
+
331
+ #### Features
332
+
333
+ - `#I639036` - Added `AutoFit` and `AutoFitAll` options in the `columnMenuItems` property to perform autofit on the current column and all existing columns. For more details, refer to the documentation link [here](https://ej2.syncfusion.com/documentation/gantt/columns/column-menu).
334
+ - `#I644719` - Implemented support for applying custom `colors` to individual segments in the PDF Gantt chart using the [`taskSegmentStyles`](https://ej2.syncfusion.com/documentation/api/gantt/iTaskbarStyle/#taskSegmentStyles) property, enabling enhanced customization and improved visualization of tasks and their segments in exported document.
335
+
336
+ #### Bug fixes
337
+
338
+ - `#I660593` - Work field column value is inconsistent during cell editing issue has been fixed.
339
+ - `#I645586` - Last rows of the taskbar are not exported when performing PDF export with the `pageOrientation` set Portrait issue has been fixed.
340
+ - `#I656591` - Duplication of timeline issue occurs for PDF export when using a blob object issue has been fixed.
341
+ - `#I657724` - Tooltip misalignment issue in angular template issue has been fixed.
342
+
343
+ - `#I657724` - Tooltip misalignment issue in angular template issue has been fixed.
344
+
345
+ ## 27.2.5 (2024-12-03)
346
+
347
+ ### GanttChart
348
+
349
+ #### Bug fixes
350
+
351
+ - `#I643775` - The `queryTaskbarInfo` event wasn't triggered for virtualization with multiple taskbars enabled and tasks in a collapsed state issue has been fixed.
352
+ - `#I660550` - Work calculation not working properly while changing end Date in grid columns issue has been fixed.
353
+ - `#I660532` - `SchedulingType` Value Resets to Null even we passed value issue has been fixed.
354
+ - `#I652260` - Splitter persistence object is not working properly in local storage issue has been fixed.
355
+ - `#I658881` - Right label is not rendered properly while giving decimal value for duration issue has been fixed.
356
+ - `#I654502` - `fontFamily` is not changing in the PDF export for header and footer issue has been fixed.
357
+ - `#F194824` - On expand parent records, data not aligned properly when `loadChildOnDemand` and virtualization enabled issue has been fixed.
358
+
359
+ - `#I643775` - The `queryTaskbarInfo` event wasn't triggered for virtualization with multiple taskbars enabled and tasks in a collapsed state issue has been fixed.
360
+ - `#I654502` - `fontFamily` is not changing in the PDF export for header and footer issue has been fixed.
361
+
362
+ ## 27.2.4 (2024-11-26)
363
+
364
+ ### GanttChart
365
+
366
+ #### Bug fixes
367
+
368
+ - `#I652901` - Incorrect date calculation when `dayWorkingTime` is defined as 24 hrs issue has been fixed.
369
+ - `#I649832` - Negative offset getting removed when duration is in decimal issue has been fixed.
370
+ - `#I650300` - Offset value for unscheduled task not updated issue has been fixed.
371
+ - `#I656842` - Misalignment between grid and chart side issue has been fixed.
372
+
373
+ ## 27.2.3 (2024-11-21)
374
+
375
+ ### GanttChart
376
+
377
+ #### Bug fixes
378
+
379
+ - `#I648948` - Undo redo functionality does not work for newly added records remote data sample issue has been fixed.
380
+ - `#I648941` - Critical path style not updated using dialog edit issue has been fixed.
381
+ - `#F194958` - Script error is occurs when dynamically changing the grid line property without data source issue has been fixed.
382
+ - `#I653638` - unit is not updated properly while setting task type as `FixedWork` issue has been fixed.
383
+ - `#I645586` - Last 3 rows of the taskbar are not exported when performing PDF export with the `pageOrientation` set Portrait issue has been fixed.
384
+ - `#I650238` - Work calculation is not functioning correctly when adding a record issue has been fixed.
385
+ - `#I650892` - Horizontal scrollbar not disappeared after performing `ZoomToFit` with below 90 percent browser issue has been fixed.
386
+
387
+ - `#F194958` - Script error is occurs when dynamically changing the grid line property without data source issue has been fixed.
388
+ - `#I648948` - Undo redo functionality does not work for newly added records remote data sample issue has been fixed.
389
+
390
+ ## 27.2.2 (2024-11-15)
391
+
392
+ ### GanttChart
393
+
394
+ #### Bug fixes
395
+
396
+ - `#644829` - Words and taskbar alignment are misaligned in pdf file when row height is less than 20 issue has been fixed.
397
+ - `#I645725` - Console error occurs when taskbar drag and drop with touch interaction issue has been fixed.
398
+ - `#I646644` - Console error occurs while dependency has decimal offset day values issue has been fixed.
399
+ - `#I653638` - unit is not updated properly while setting task type as `FixedWork` issue has been fixed.
400
+
401
+ ## 27.1.58 (2024-11-05)
402
+
403
+ ### GanttChart
404
+
405
+ #### Bug fixes
406
+
407
+ - `#645586` - Last 3 rows of the taskbar are not exported when performing PDF export with the `pageOrientation` set Portrait issue has been fixed.
408
+ - `#644812` - When adding a record, the validation for taskType as `fixedDuration` is not working properly issue has been fixed.
409
+
410
+ ## 27.1.57 (2024-10-29)
411
+
412
+ ### GanttChart
413
+
414
+ #### Bug fixes
415
+
416
+ - `#I642434` - `recordIndex` property is updating last index for every above or below add action via `contextMenu` issue has been fixed.
417
+ - `#I646826` - An invalid resource collection is being passed resulting in a script error issue has been fixed.
418
+ - `#I637870` - White space when expand and collapse action issue has been fixed.
419
+
420
+ - `#I642434` - `recordIndex` property is updating last index for every above or below add action via `contextMenu` issue has been fixed.
421
+
422
+ ## 27.1.56 (2024-10-23)
423
+
424
+ ### GanttChart
425
+
426
+ #### Bug fixes
427
+
428
+ - `#I645245` - Console error occurs while taskbar editing without `allowEditing` property issue has been fixed.
429
+
430
+ ## 27.1.55 (2024-10-22)
431
+
432
+ ### GanttChart
433
+
434
+ #### Bug fixes
435
+
436
+ - `#I639460` - Console error occurred when clicking `fittoproject` issue has been fixed.
437
+ - `#I643327` - Custom zooming levels using virtual mode throw a script error when zooming in and out issue has been fixed.
438
+ - `#I641833` - Console error occurs while exporting pdf with empty data and critical path issue has been fixed.
439
+ - `#I639036` - `columnMenuItems` property shows an error when assigning AutoFit and `AutoFitAll` issue has been fixed.
440
+ - `#I637794`,`#I637841` - Pdf export issue with baselines not working properly issue has been fixed.
441
+
442
+ - `#I637794`,`#I637841` - Pdf export issue with baselines not working properly issue has been fixed.
443
+ - `#I643327` - Custom zooming levels using virtual mode throw a script error when zooming in and out issue has been fixed.
444
+
445
+ ## 27.1.53 (2024-10-15)
446
+
447
+ ### GanttChart
448
+
449
+ #### Bug fixes
450
+
451
+ - `#I634857` - Parent dependency validation is not working properly issue has been fixed.
452
+ - `#I632390` - While collapsing parent custom color applied for child disappeared issue has been fixed.
453
+ - `#I635881` - `taskMode` is set to custom non-working days are not disabled when editing the Start Date and End Date columns issue has been fixed.
454
+ - `#I636598` - Duration field not updating in dialog box when setting the end Date as same as start Date issue has been fixed.
455
+ - `#I635782` - When the `PdfTrueTypeFont` property is used, the label value is not exported issue has been fixed.
456
+ - `#I637078` - Setting `fontSize` for labels does not working when exporting to pdf issue has been fixed.
457
+ - `#I635774` - Portrait mode not working in pdf export while using `A0` page size issue has been fixed.
458
+ - `#I632226` - Performance delay occur during load time issue has been fixed.
459
+
460
+ - `#I634857` - Parent dependency validation is not working properly issue has been fixed.
461
+ - `#I632226` - Performance delay occur during load time issue has been fixed.
462
+
463
+ ## 27.1.52 (2024-10-08)
464
+
465
+ ### GanttChart
466
+
467
+ #### Bug fixes
468
+
469
+ - `#I634826` - Manual parent taskbar pdf export is not working properly issue has been fixed.
470
+ - `#I634832` - The issue about `isShiftPressed` property in the row selecting event was not maintained properly has been fixed.
471
+ - `#I633271` - Changing the events hitting order and add `rowPosition` property in `actionBegin` event issue has been fixed
472
+ - `#I634857` - Parent dependency validation is not working properly issue has been fixed.
473
+ - `#I634137` - The Date Format is not working properly in the predecessor dialog validation issue has been fixed.
474
+
475
+ - `#I634832` - The issue about `isShiftPressed` property in the row selecting event was not maintained properly has been fixed.
476
+ - `#I633271` - Changing the events hitting order and add `rowPosition` property in `actionBegin` event issue has been fixed.
477
+ - `#I634857` - Parent dependency validation is not working properly issue has been fixed.
478
+
479
+ ## 27.1.51 (2024-09-30)
480
+
481
+ ### GanttChart
482
+
483
+ #### Bug fixes
484
+
485
+ - `#I632186` - Custom column not refreshed properly while indent and outdent issue has been fixed.
486
+ - `#I631776` - Dates given in the data source are not displayed same as segment data source issue has been fixed.
487
+ - `#I633422` - Incorrect start date updated using `updateRecordByID` issue has been fixed.
488
+ - `#I510310` - Scroll jumps when using a 4K monitor with virtualization issue has been fixed.
489
+ - `#I632368` - Last record removed during virtual scroll issue has been fixed.
490
+
491
+ - `#I632186` - Custom column not refreshed properly while indent and outdent issue has been fixed.
492
+
493
+ ## 27.1.50 (2024-09-24)
494
+
495
+ ### GanttChart
496
+
497
+ #### Bug fixes
498
+
499
+ - `#I629988` - Change the event argument action property value while deleting dependency issue has been fixed.
500
+ - `#I629758` - Console error while deleting last record with undo redo and styles not persists in notes tab in dialog issues has been fixed.
501
+ - `#I631900` - Script error occurs while deleting last record when undo redo support is enabled issue has been fixed.
502
+ - `#I625233` - Timeline cell disappeared during `DST` issue has been fixed.
503
+ - `#I631255` - Incorrect left is updated during `DST` issue has been fixed.
504
+ - `#I628433` - When adding a dependency to an unscheduled task, an exception is thrown issue has been fixed.
505
+ - `#I632390` - While collapsing parent custom color applied for child disappeared issue has been fixed.
506
+
507
+ - `#I631900` - Script error occurs while deleting last record when undo redo support is enabled issue has been fixed.
508
+ - `#I625233` - Timeline cell disappeared during `DST` issue has been fixed.
509
+ - `#I631255` - Incorrect left is updated during `DST` issue has been fixed.
510
+
511
+ ## 27.1.48 (2024-09-18)
512
+
513
+ ### GanttChart
514
+
515
+ #### Features
516
+
517
+ - `#I893608`- The [Zooming](https://ej2.syncfusion.com/documentation/gantt/timeline/zooming) feature in the timeline has been enhanced to include touch support and mouse wheel interaction. Users can now perform zoom-in and zoom-out actions by pinching in/out on the chart pane or using the mouse wheel in combination with the 'Ctrl' key. Explore the demo [here](https://ej2.syncfusion.com/demos/#/fluent2/gantt/zooming.html).
518
+ - `#I885165`,`#F56892`- Provided support for taskbar resizing for manually scheduled parent taskbars [Task Scheduling](https://ej2.syncfusion.com/documentation/gantt/task-scheduling#manually-scheduled-tasks), allowing taskbar resize actions.
519
+ - `#I885310`,`#F56941`- The Gantt Chart now supports localized text for [Dependency](https://ej2.syncfusion.com/documentation/gantt/task-dependency) types (FS, FF, SF, SS), improving readability and providing greater flexibility for localized applications. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/fluent2/gantt/editing.html).
520
+
521
+ - `#I893608`- The [Zooming](https://ej2.syncfusion.com/angular/documentation/gantt/timeline/zooming) feature in the timeline has been enhanced to include touch support and mouse wheel interaction. Users can now perform zoom-in and zoom-out actions by pinching in/out on the chart pane or using the mouse wheel in combination with the 'Ctrl' key. Explore the demo [here](https://ej2.syncfusion.com/angular/demos/#/fluent2/gantt/zooming).
522
+ - `#I885165`,`#F56892`- Provided support for taskbar resizing for manually scheduled parent taskbars [Task Scheduling](https://ej2.syncfusion.com/angular/documentation/gantt/task-scheduling#manually-scheduled-tasks), allowing taskbar resize actions.
523
+ - `#I885310`,`#F56941`- The Gantt Chart now supports localized text for [Dependency](https://ej2.syncfusion.com/angular/documentation/gantt/taskdependency) types (FS, FF, SF, SS), improving readability and providing greater flexibility for localized applications. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/fluent2/gantt/editing).
524
+
525
+ #### Breaking Changes
526
+
527
+ - The behaviour of the [`loadChildOnDemand`](https://ej2.syncfusion.com/documentation/api/gantt/#loadchildondemand) property in the Gantt Chart has been modified. Previously, when this property was set to `true`, both parent and child records were loaded simultaneously. Now, when set to true, parent records will initially be rendered in a collapsed state, with child records being loaded only when the parent row is expanded. Additionally, the default value of `loadChildOnDemand` has been changed from `false` to `true`.
528
+
529
+ - The behaviour of the [`loadChildOnDemand`](https://ej2.syncfusion.com/angular/documentation/api/gantt/#loadchildondemand) property in the Gantt Chart has been modified. Previously, when this property was set to `true`, both parent and child records were loaded simultaneously. Now, when set to true, parent records will initially be rendered in a collapsed state, with child records being loaded only when the parent row is expanded. Additionally, the default value of `loadChildOnDemand` has been changed from `false` to `true`.
530
+
531
+ #### Bug fixes
532
+
533
+ - `#I629322` - Edit dialog closes even when the action is cancel issue has been fixed.
534
+ - `#I629080` - The console error that occurred when changing the view type dynamically with a button click issue has been fixed.
535
+ - `#I632016` - Console error occurred while connecting `FF` type dependency to duration only tasks issue has been fixed.
536
+
537
+ ## 26.1.35 (2024-06-11)
538
+
539
+ ### GanttChart
540
+
541
+ #### Features
542
+
543
+ - `#I272613`,`#I269665`,`#I247664`,`#F146782` - Provided [weekWorkingTime](https://ej2.syncfusion.com/documentation/api/gantt/#weekworkingtime) support, allowing you to define distinct work hours for different working days. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/material3/gantt/working-time-range.html).
544
+ - `#I287282`, `#I298661`, `#I307272`, `#I313849`, `#I323459`, `#F185672`, - Provided [timelineTemplate](https://ej2.syncfusion.com/documentation/api/gantt/#timelineTemplate) support to render user defined HTML elements in timeline header. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/material3/gantt/timeline-template.html).
545
+ - We have improved to handle the exception of errors made at Gantt component model binding and throws the error information in `actionFailure` event. Please find the documentation link [here](https://ej2.syncfusion.com/documentation/gantt/exception-handling).
546
+
547
+ - `#I272613`,`#I269665`,`#I247664`,`#F146782` - Provided [weekWorkingTime](https://ej2.syncfusion.com/angular/documentation/api/gantt/#weekworkingtime) support, allowing you to define distinct work hours for different working days. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/material3/gantt/working-time-range).
548
+ - `#I287282`, `#I298661`, `#I307272`, `#I313849`, `#I323459`, `#F185672`, - Provided [timelineTemplate](https://ej2.syncfusion.com/angular/documentation/api/gantt/#timelineTemplate) support to render user defined HTML elements in timeline header. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/material3/gantt/timeline-template).
549
+ - We have improved to handle the exception of errors made at Gantt component model binding and throws the error information in `actionFailure` event. Please find the documentation link [here](https://ej2.syncfusion.com/angular/documentation/gantt/exception-handling).
550
+
551
+ ## 25.2.5 (2024-05-21)
552
+
553
+ ### GanttChart
554
+
555
+ #### Bug fixes
556
+
557
+ - `#I586588` - Event markers are hidden behind the taskbar in PDF exported file issue has been fixed.
558
+ - `#I586588` - Console error throws while merging two segments with duration of one day issue has been fixed.
559
+ - `#I463798` - Parent date changes when Unscheduled task is added issue has been fixed.
560
+ - `#I582983` - The issue about date miscalculation when dragging the taskbar with timeline virtualization has been fixed.
561
+
562
+ ## 25.2.3 (2024-05-08)
563
+
564
+ - `#I570803` - Tree Grid and Gantt chart side was not synchronized issue has been fixed.
565
+
566
+ ## 25.1.42 (2024-04-30)
567
+
568
+ ### GanttChart
569
+
570
+ #### Bug fixes
571
+
572
+ - `#I576547` - When a parent record is deleted, the PUT method still returns the record that has already been deleted issue has been fixed.
573
+ - `#I575077` - Timeline does not render properly while predecessor offset value in negative value issue has been fixed.
574
+ - `#I578380` - When using tooltip template, an exception is thrown issue has been fixed.
575
+ - `#I577723` - Dependency day not applied globalization issue has been fixed.
576
+ - `#I576290` - Dialog edit not working properly for multiple dependency issue has been fixed.
577
+ - `#I577597` - `queryTaskbarInfo` event using style is not applied when resource view in collapsed state in tasks issue has been fixed.
578
+
579
+ - `#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
580
+ - `#I578380` - When using tooltip template, an exception is thrown issue has been fixed.
581
+ - `#I577597` - `queryTaskbarInfo` event using style is not applied when resource view in collapsed state in tasks issue has been fixed.
582
+ - `#I576290` - Dialog edit not working properly for multiple dependency issue has been fixed.
583
+
584
+ ## 25.1.41 (2024-04-23)
585
+
586
+ - `#I579405` - When `enablePersistence` enabled exception thrown in Gantt issue has been fixed.
587
+ - `#I463798` - Parent date changes while adding Unscheduled task dynamically issue has been fixed.
588
+ - `#I578431` - Last page index issue in virtualization when adding new record after scrolling issue has been fixed.
589
+
590
+ ## 25.1.40 (2024-04-16)
591
+
592
+ ### GanttChart
593
+
594
+ #### Bug fixes
595
+
596
+ - `#I566632` - Duration calculations are incorrect in edit or add dialog in decimals issue has been fixed.
597
+ - `#I577383` - Predecessor not validated properly for parent task issue has been fixed.
598
+ - `#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
599
+ - `#I570307` - Toolbar refresh script error throws in Gantt issue has been fixed.
600
+
601
+ -`#I574986` - Console error occurs while adding segments via dialog in Gantt issue has been fixed.
602
+
603
+ ## 25.1.39 (2024-04-09)
604
+
605
+ ### GanttChart
606
+
607
+ #### Bug fixes
608
+
609
+ - `#I574841` - Console error occurs while opening dialog where fields and column are different.
610
+ - `#I570307` - Toolbar refresh script error throws in Gantt issue has been fixed.
611
+ - `#I568101` - The Gantt search toolbar item is not working in mobile mode issue has been fixed.
612
+ - `#I566632` - Duration calculations are incorrect in edit or add dialog in decimals issue has been fixed.
613
+ - `#I566103` - Baseline not showing in multi taskbar view.
614
+ - `#I565427` - Dependency not validated for dynamically updating work week and holidays issue has been fixed.
615
+ - `#I575577`,`#I575505`,`#I576464` - Console error occurred when dynamically changing the data source and other properties of the Gantt chart via button click has been fixed.
616
+
617
+ - `#I575505` - Console error occurred when dynamically changing the data source and other properties of the Gantt chart via button click has been fixed.
618
+
619
+ ## 25.1.38 (2024-04-02)
620
+
621
+ ### GanttChart
622
+
623
+ #### Bug fixes
624
+
625
+ - `#I566539` - Console error occurs while saving custom data in add dialog box with validation rule issue has been fixed.
626
+ - `#I553748` - Timeline dates validated wrongly after cell editing with timeline virtualization enabled issue has been fixed.
627
+ - `#I565751` - The chart side does not refresh when any record is edited by cell editing issue has been fixed.
628
+
629
+ ## 25.1.37 (2024-03-26)
630
+
631
+ ### GanttChart
632
+
633
+ #### Bug fixes
634
+
635
+ - `#F187206` - The delete action not working in remote data when `timezone` using in sample.
636
+ - `#I566491` - The exception is thrown when the resource ID mapping is empty issue has been fixed.
637
+ - `#I565418` - Start date defaulting to incorrect value when remove the start Date in add dialog.
638
+ - `#I566632` - Duration calculations are incorrect in edit or add dialog in decimals issue has been fixed.
639
+ - `#I565751` - The chart does not refresh when any record is edited by cell editing issue has been fixed.
640
+ - `#I566333` - Gantt chart disappeared while insert action with `timlineVirtualization` issue has been fixed.
641
+ - `#F186355` - Taskbar template not showing in resource view issue has been fixed.
642
+ - `#I562492` - `actionBegin` arguments miss the last record while dragging issue has been fixed.
643
+ - `#I556547` - Top and bottom tier shows null when using custom zooming level issue has been fixed.
644
+ - `#I566539` - Console error occurs while saving data in add dialog box with validation rule issue has been
645
+ fixed.
646
+ - `#I553748` - Timeline dates validated wrongly after cell editing with timeline virtualization enabled issue has been fixed.
647
+ - `#I565439` - Work calculations are incorrect for parent task in project view issue has been fixed.
648
+ - `#I553710`,`#I565824` - Weekends are not highlighted while `timlineVirtualization` is enabled issue has been fixed.
649
+ - `#I565359` - When `allowEditing` is disabled in a resource view, a console error is thrown issue has been fixed.
650
+ - `#I565427` - Dependency not validated for dynamically updating work week and holidays issue has been fixed.
651
+ - `#I560166` - The context menu using "add child" for any task, dependency line validation is not working properly.
652
+
653
+ - `#I565359` - When `allowEditing` is disabled in a resource view, a console error is thrown issue has been fixed.
654
+ - `#I566103` - Baseline not showing in multi taskbar view.
655
+
656
+ ## 25.1.35 (2024-03-15)
657
+
658
+ ### GanttChart
659
+
660
+ #### Bug fixes
661
+
662
+ - `#F186965` - When we use `RTL` mode splitter settings functionality remains as in normal mode issue has been fixed.
663
+ - `#I561396` - When `hasChildMapping` is enabled `addParams` not working issue has been fixed.
664
+ - `#I546767` - Split taskbar template not working properly with multiple levels.
665
+
666
+ #### Features
667
+
668
+ - `#I468621`,`#I504565`,`#I518180`, `#I523106`,`#I558459` - Provided undo redo support for the actions such as `Edit`, `Add`, `Delete`, `Sorting`, `ColumnReorder`, `ColumnResize`, `Search`, `Filtering`, `ZoomIn`, `ZoomOut`, `ZoomToFit`, `ColumnState`, `Indent`, `Outdent`, `RowDragAndDrop`, `TaskbarDragAndDrop`, `PreviousTimeSpan` and `NextTimeSpan` in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/undo-redo.html).
669
+ - `#I364692` - Provided support for taskbars, task labels, and header templates in the Gantt Chart's PDF Export feature. Please find the documentation link [here](https://ej2.syncfusion.com/documentation/gantt/pdf-export/pdf-export#exporting-with-templates).
670
+ - `#I522246`,`#I527511`,`#I562591`- Provided [`additionalParams`](https://ej2.syncfusion.com/documentation/api/gantt/addDialogFieldSettingsModel/#additionalParams) API support to customize the Grid and RTE in edit/add dialog. Please find more information [here](https://ej2.syncfusion.com/documentation/gantt/managing-tasks/managing-tasks#customize-tab-elements).
671
+
672
+ - `#I468621`,`#I504565`,`#I518180`, `#I523106`,`#I558459` - Provided undo redo support for the actions such as `Edit`, `Add`, `Delete`, `Sorting`, `ColumnReorder`, `ColumnResize`, `Search`, `Filtering`, `ZoomIn`, `ZoomOut`, `ZoomToFit`, `ColumnState`, `Indent`, `Outdent`, `RowDragAndDrop`, `TaskbarDragAndDrop`, `PreviousTimeSpan` and `NextTimeSpan` in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/undo-redo.html).
673
+ - `#I364692` - Provided support for taskbars, task labels, and header templates in the Gantt Chart's PDF Export feature. Please find the documentation link [here](https://ej2.syncfusion.com/angular/documentation/gantt/pdf-export/pdf-export#exporting-with-templates).
674
+ - `#I522246`,`#I527511`,`#I562591`- Provided [`additionalParams`](https://ej2.syncfusion.com/angular/documentation/api/gantt/addDialogFieldSettingsModel/#additionalParams) API support to customize the Grid and RTE in edit/add dialog. Please find more information [here](https://ej2.syncfusion.com/angular/documentation/gantt/managing-tasks/managing-tasks#customize-tab-elements).
675
+
676
+ #### Breaking Changes
677
+
678
+ - The default value for taskType will be `fixedUnit`, even when the `work` field is mapped in `taskFields`. Previously, if the `work` field was mapped, its default value internally changed to `fixedWork`, and resource units were calculated accordingly. Now, it's necessary to specify taskType as `fixedWork` at the sample level if the `work` field is mapped in `taskFields`.
679
+
680
+ ## 24.2.8 (2024-02-27)
681
+
682
+ ### GanttChart
683
+
684
+ #### Bug fixes
685
+
686
+ - `#I555169` - The scrollbar into view taskbar not working properly issue has been fixed.
687
+ - `#I556229` - Splitter View is not updating properly while using `setSplitterPosition` issue has been fixed.
688
+ - `#I553873` - Taskbar not rendered properly when using hour format in `DST` issue has been fixed.
689
+ - `#I548519` - Timeline start date changed after zooming action issue has been fixed.
690
+ - `#I548491` - React Gantt crashes when updating parent and changing column from column chooser issue has been fixed.
691
+ - `#I544198` - Delay in predecessor validation issue has been fixed.
692
+ - `#I552622` - The enable immutable enabled sample expand icon hide when record add issue has been fixed.
693
+ - `#I553420` - Editing resource allocation differed from initial rendering.
694
+ - `#I555214` - Disabling all editing options leads to console error issue has been fixed.
695
+ - `#I553748` - Editing the task name following the reset of the taskbar start date will lead to the taskbar rendering an incorrect date issue has been fixed.
696
+ - `#I553710` - Dragging the task following the reset of the parent taskbar start date will lead to get duplicate taskbar issue has been fixed.
697
+
698
+ - `#I556229` - Splitter View is not updating properly while using `setSplitterPosition` issue has been fixed.
699
+ - `#I548519` - Timeline start date changed after zooming action issue has been fixed.
700
+
701
+ ## 24.2.7 (2024-02-20)
702
+
703
+ ### GanttChart
704
+
705
+ #### Bug fixes
706
+
707
+ - `#I548671` - Dependency not working when id is alpha numeric issue has been fixed.
708
+ - `#I552756` - A console error occurs when hovering over the Column menu options issue has been fixed.
709
+ - `#I543787` - The timezone properties used in the sample taskbar not render properly issue has been fixed.
710
+ - `#I550317` - Duration value getting string instead of number issue has been fixed.
711
+
712
+ - `#I550317` - Duration value getting string instead of number issue has been fixed.
713
+
714
+ ## 24.2.5 (2024-02-13)
715
+
716
+ ### GanttChart
717
+
718
+ #### Bug fixes
719
+
720
+ - `#I544540` - Offset value not calculated properly issue has been fixed.
721
+ - `#I552745` - Pressing enter key in dialog refresh the Gantt issue has been fixed.
722
+ - `#I551289` - The zoom in action before horizontal scroll, after the zoom action triggers, alignment issues occur issue has been fixed.
723
+ - `#I532096` - Failing Karma Test cases in Angular issue has been fixed.
724
+
725
+ - `#I544540` - Offset value not calculated properly issue has been fixed.
726
+ - `#I532096` - Failing Karma Test cases in Angular issue has been fixed.
727
+
728
+ ## 24.2.4 (2024-02-06)
729
+
730
+ ### GanttChart
731
+
732
+ #### Bug fixes
733
+
734
+ - `#I550406` - Task type property does not update properly by mapping work field issue has been fixed.
735
+ - `#I542029` - Unable to render full lengthy text in pdf export issue has been fixed.
736
+ - `#I549638` - The taskbar edit action is not working in RTL mode issue has been fixed.
737
+ - `#I544478` - Validation rules not working for numeric field issue has been fixed.
738
+
739
+ - `#I544478` - Validation rules not working for numeric field issue has been fixed.
740
+
741
+ ## 24.2.3 (2024-01-31)
742
+
743
+ ### GanttChart
744
+
745
+ #### Bug fixes
746
+
747
+ - `#I540355` - RTE create column not working in dialog box issue has been fixed.
748
+ - `#I543351` - The taskbar render validation not working properly issue has been fixed.
749
+
750
+ - `#I540355` - RTE create column not working in dialog box issue has been fixed.
751
+
752
+ ## 24.1.47 (2024-01-23)
753
+
754
+ ### GanttChart
755
+
756
+ #### Bug fixes
757
+
758
+ - `#I540518` - Can't able to drag and drop to the new resource issue has been fixed.
759
+ - `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
760
+ - `#I538002` - Alignment Issue with PDF Export in React Gantt issue has been fixed.
761
+
762
+ - `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
763
+
764
+ ## 24.1.46 (2024-01-17)
765
+
766
+ ### GanttChart
767
+
768
+ #### Bug fixes
769
+
770
+ - `#I533229` - Server call is triggered twice issue has been fixed.
771
+ - `#I531670` - When adding a record by method before saving, if the task ID is changed after taskbar hover exception thrown issue has been fixed.
772
+ - `#I538917` - Text is not rendered properly in header while using page size issue has been fixed.
773
+ - `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
774
+
775
+ - `#I185970` - Dynamic template updating in columns does not render issue has been fixed.
776
+
777
+ ## 24.1.45 (2024-01-09)
778
+
779
+ ### GanttChart
780
+
781
+ #### Bug fixes
782
+
783
+ - `#I530808` - Progress width not rendered properly in split tasks issue has been fixed.
784
+ - `#F185683` - Resources are not updating properly in `actionBegin`event issue has been fixed.
785
+ - `#I532918` - Baseline width not rendered properly in PDF export issue has been fixed.
786
+ - `#F532918` - Issue with remote data while performing CRUD operation in various Gantt chart versions has been fixed.
787
+ - `#I521365` - Dates in tooltip not rendered correctly issue has been fixed.
788
+
789
+ ## 24.1.44 (2024-01-03)
790
+
791
+ ### GanttChart
792
+
793
+ #### Bug fixes
794
+
795
+ `#I531670` - When adding record by method before saving, if the task ID is changed after taskbar hover exception thrown issue has been fixed.
796
+
797
+ ## 24.1.43 (2023-12-27)
798
+
799
+ - `#I527509` - Action begin event arguments not working properly issue has been fixed.
800
+ - `#I517104` - Gantt component hangs whole page if timezone changed to UK(London) issue has been fixed.
801
+
802
+ ### GanttChart
803
+
804
+ #### Bug fixes
805
+
806
+ - `#I527509` - Action begin event arguments not working properly issue has been fixed.
807
+
808
+ ## 23.2.5 (2023-11-23)
809
+
810
+ ### GanttChart
811
+
812
+ #### Bug fixes
813
+
814
+ - `#I520118` - Console error occurs other than self reference data issue has been fixed.
815
+ - `#I515425` - Issue with observable data binding in Gantt chart issue has been fixed.
816
+ - `#I520146` - Timeline render in advance the project start date while resizing taskbar issue has been fixed.
817
+ - `#I521906` - Milestone not working properly while drop at weekend issue has been fixed.
818
+ - `#I516954` - Dependency line not render after adding child record issue has been fixed.
819
+
820
+ - `#I515425` - Issue with observable data binding in Gantt chart issue has been fixed.
821
+ - `#I521906` - Milestone not working properly while drop at weekend issue has been fixed.
822
+ - `#I516954` - Dependency line not render after adding child record issue has been fixed.
823
+
824
+ ## 23.2.4 (2023-11-20)
825
+
826
+ ### GanttChart
827
+
828
+ #### Bug fixes
829
+
830
+ - `#I517359` - Columns does not update while changing columns value by Gantt instance issue has been fixed.
831
+ - `#I514463` - PDF exported with blank pages and dislocated connected lines issue has been fixed.
832
+ - `#I514452` - Baseline does not render by changing date issue has been fixed.
833
+
834
+ - `#I514452` - Baseline does not render by changing date issue has been fixed.
835
+
836
+ ## 23.1.44 (2023-11-07)
837
+
838
+ ### GanttChart
839
+
840
+ - `#I513332` - Excel filter only takes one character at a time issue has been fixed.
841
+ - `#I517515` - Custom toolbar template not renders after toolbar click action in Gantt issue has been fixed.
842
+
843
+ #### Bug fixes
844
+
845
+ ## 23.1.43 (2023-10-31)
846
+
847
+ ### GanttChart
848
+
849
+ #### Bug fixes
850
+
851
+ - `#I493515` - Console error throw while Expand and collapse the parent taskbar issue has been fixed.
852
+ - `#I513655` - Filter menu close as soon as the mouse is up issue has been fixed.
853
+
854
+ ## 23.1.42 (2023-10-24)
855
+
856
+ ### GanttChart
857
+
858
+ #### Bug fixes
859
+
860
+ - `#I508297` - Progress tooltip is misaligned after editing issue has been fixed.
861
+ - `#I509023` - Duration changes to zero while giving input as decimal in remote data issue has been fixed.
862
+ - `#I510092` - Taskbar not rendered in proper alignment in exported page issue has been fixed.
863
+ - `#I512556` - Background color issue with dependency connector line has been fixed.
864
+ - `#I502236` - Taskbar drag and drop issue in virtual scroll resource view issue been fixed.
865
+
866
+ - `#I502236` - Taskbar drag and drop issue in virtual scroll resource view issue been fixed.
867
+
868
+ ## 23.1.41 (2023-10-17)
869
+
870
+ ### GanttChart
871
+
872
+ #### Bug fixes
873
+
874
+ - `#I494495` - Script error occurs when trying to edit after sorting in presence of validation message issue has been fixed.
875
+ - `#I508721` - Baseline date does not render properly for milestone task issue has been fixed.
876
+ - `#I482456` - Critical path tasks not validated after drag and drop issue has been fixed.
877
+
878
+ ## 23.1.39 (2023-10-04)
879
+
880
+ ### GanttChart
881
+
882
+ #### Bug fixes
883
+
884
+ - `#I502041` - Error throw while adding the record issue has been fixed.
885
+ - `#I493515` - Style is not applied to the second segment issue has been fixed.
886
+
887
+ ## 23.1.38 (2023-09-26)
888
+
889
+ ### GanttChart
890
+
891
+ #### Bug fixes
892
+
893
+ - `#I479961` - Milestone baseline moves along with the milestone issue has been fixed.
894
+ - `#I501391` - Misalignment in tooltip when connecting predecessor.
895
+ - `#I495216` - Predecessor is not displayed when we give `GUID` issue has been fixed.
896
+ - `#I499587` - Update of custom column in general tab issue has been fixed.
897
+ - `#I184189` - Changing values in the action Begin event does not reflect while rendering issue has been fixed.
898
+ - `#F184629` - Milestone not rendered properly after editing issue has been fixed.
899
+ - `#I492520` - Critical path styling not getting cleared correctly issue has been fixed.
900
+ - `#I502650` - Taskbar dragging and progress resizing while moving the mouse outside chart issue has been fixed.
901
+ - `#I493515` - When we collapse with Virtualization, the styles doesn't apply properly issue has been fixed.
902
+ - `#I486977` - White space issue occur when we close the side pane issue has been fixed.
903
+
904
+ - `#I499587` - Update of custom column in general tab issue has been fixed.
905
+ - `#I486977` - White space issue occur when we close the side pane issue has been fixed.
906
+
907
+ ## 23.1.36 (2023-09-15)
908
+
909
+ ### GanttChart
910
+
911
+ #### Features
912
+
913
+ - `#I275966` - Provided lazy loading support in Gantt chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/load-on-demand.html).
914
+ - `#I396039` - Provided baseline support for PDF export in Gantt Chart.
915
+ - Provided support to export the Gantt component where each rows are auto-fit to the PDF document page width. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/exporting.html).
916
+ - Provided touch interaction support for taskbar resizing, dragging, predecessor connectivity in Gantt chart.
917
+
918
+ - `#I275966` - Provided lazy loading support in Gantt chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/load-on-demand.html).
919
+ - `#I396039` - Provided baseline support for PDF export in Gantt Chart.
920
+ - Provided support to export the Gantt component where each rows are auto-fit to the PDF document page width. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/exporting.html).
921
+ - Provided touch interaction support for taskbar resizing, dragging, predecessor connectivity in Gantt chart.
922
+
923
+ #### Bug fixes
924
+
925
+ - `#I492654` - When empty data source pdf export exception thrown issue has been fixed.
926
+ - `#I479578` - Milestone parent is not appearing issue has been fixed.
927
+
928
+ ## 22.2.12 (2023-09-05)
929
+
930
+ ### GanttChart
931
+
932
+ #### Bug fixes
933
+
934
+ - `#I488557` - The project dates are not modified after changing the timeline.
935
+ - `#I472635` - When pressing the insert key `newRowPosition` bottom row is not highlighted.
936
+ - `#I489655` - Milestone is not converting back to taskbar when we have milestone property has been fixed.
937
+ - `#I492520` - Critical path styling not getting cleared correctly issue has been fixed.
938
+ - `#I492654` - When empty data source pdf export exception thrown issue has been fixed.
939
+ - `#I485527` - Filter menu opening issue in column menu has been fixed.
940
+ - `#I494859` - Gantt shrinks when we update the datasource issue has been fixed.
941
+
942
+ - `#I494859` - Gantt shrinks when we update the datasource issue has been fixed.
943
+
944
+ ## 22.2.11 (2023-08-29)
945
+
946
+ ### GanttChart
947
+
948
+ #### Bug fixes
949
+
950
+ - `#I485527` - Filter menu opening issue in column menu has been fixed.
951
+ - `#I491313` - Multiple records were selected after using the context menu, adding the milestone position wrong issue has been fixed.
952
+ - `#F183168` - Gantt Chart not refreshing after adding new item is fixed.
953
+ - `#I491178` - Data modified in the server is not reflected in the rendered Gantt Chart is fixed.
954
+
955
+ - `#F183168` - Gantt Chart not refreshing after adding new item is fixed.
956
+
957
+ ## 22.2.10 (2023-08-22)
958
+
959
+ ### GanttChart
960
+
961
+ #### Bug fixes
962
+
963
+ - `#I486977` - Zoom To Fit issue when we resize browser window has been fixed.
964
+ - `#I484086` - Other instance of the taskbar not moved in the resource view issue has been fixed.
965
+ - `#I482456` - Critical path is incorrect in the Gantt Chart issue has been fixed.
966
+
967
+ - `#I486977` - Zoom To Fit issue when we resize browser window has been fixed.
968
+ - `#I484086` - Other instance of the taskbar not moved in the resource view issue has been fixed.
969
+
970
+ ## 22.2.9 (2023-08-15)
971
+
972
+ ### GanttChart
973
+
974
+ #### Bug fixes
975
+
976
+ - `#I485657` - Misalignment happened in timeline while exporting `PDF` in Gantt has been fixed.
977
+ - `#I485398` - console error occurs while using segment data issue has been fixed.
978
+ - `#I487527` - Data manager URL is called twice.
979
+ - `#I484079`- Vertical scroll and taskbar is not fully visible in yearly mode issue has been fixed.
980
+ - `#I461564`- No action is performed when we try to add task when the cell is in edited state issue has been fixed.
981
+ - `#I486234` - Label gets hidden in Gantt Chart when task mode is manual issue has been fixed.
982
+
983
+ ## 22.2.8 (2023-08-08)
984
+
985
+ ### GanttChart
986
+
987
+ #### Bug fixes
988
+
989
+ - `#I485907` - When multiple records are selected after using the context menu to delete, it is not working issue has been fixed.
990
+ - `#I483579` - Splitter resize issue when we resize browser window issue has been fixed.
991
+ - `#I483399` - Style not applied for the collapsed row when the virtual scroll is enabled issue has been fixed.
992
+ - `#I473286` - Unable to drag taskbar and tooltip is misaligned issue has been fixed.
993
+
994
+ - `#I473286` - Unable to drag taskbar and tooltip is misaligned issue has been fixed.
995
+
996
+ ## 22.2.7 (2023-08-02)
997
+
998
+ ### GanttChart
999
+
1000
+ #### Bug fixes
1001
+
1002
+ - `#I479591` - Critical path is not working properly when the baseline is changed dynamically issue has been fixed.
1003
+ - `#F182867` - Edit parameters not working in date columns issue has been fixed.
1004
+ - `#I479578` - Milestone get disappeared when we indent the record issue has been fixed.
1005
+ - `#I481480` - Last segments resizing issue has been fixed.
1006
+ - `#I481603` - Zoom To Fit while Search/Filtered then Clearing Search doesn't update Horizontal Scroll issue has been fixed.
1007
+ - `#IF183168` - Record was not added in Gantt using `oDataV4Adaptor` issue has been fixed.
1008
+ - `#I479607` - Search including extra results issue has been fixed.
1009
+ - `#I481058` - Console error when we use RTL and taskbar template issue has been fixed.
1010
+ - `#I482456` - Critical path not working properly issue has been fixed.
1011
+ - `#I485219` - Selection is not working when we use react hook.
1012
+ - `#I486928` - Incorrect time is displayed in the column.
1013
+
1014
+ - `#IF183168` - Record was not added in Gantt using `oDataV4Adaptor` issue has been fixed.
1015
+
1016
+ ## 22.2.5 (2023-07-27)
1017
+
1018
+ ### GanttChart
1019
+
1020
+ #### Bug fixes
1021
+
1022
+ -`#I472635`-Using insert key highlights top row has been fixed.- `#I480002` - Can’t open task information in the context menu issue has been fixed.
1023
+ - `#I479988` - Ghosting bars left on screen after cancelling task bar drag.
1024
+ - `#I479961` - Milestone baseline moves along with the milestone issue has been fixed.
1025
+ - `#I481999` - Page refresh when using validation rules for column issue has been fixed.
1026
+
1027
+ ## 22.1.39 (2023-07-18)
1028
+
1029
+ ### GanttChart
1030
+
1031
+ #### Bug fixes
1032
+
1033
+ - `#I45187` - Border is changed to outline in CSS issue has been fixed.
1034
+
1035
+ ## 22.1.38 (2023-07-11)
1036
+
1037
+ ### GanttChart
1038
+
1039
+ #### Bug fixes
1040
+
1041
+ - `#I474676` - Fit to project display wrong timeline issue has been fixed.
1042
+ - `#I472975` - Manual task predecessor not properly fetching updated offset issue has been fixed.
1043
+ - `#I471838` - White space occur when we change page size in `dataBound` event issue has been fixed.
1044
+ - `#I475099` - Context menu is not opening when the dataSource is empty.
1045
+ - `#I477253` - Inserting a task prevents scrolling to top of list.
1046
+ - `#I461924` - Issue with collapse all Toolbar Option issue has been fixed.
1047
+ - `#I475987` -Edit template is not working when the virtualization is enabled.
1048
+
1049
+ ## 22.1.37 (2023-07-04)
1050
+
1051
+ ### GanttChart
1052
+
1053
+ #### Bug fixes
1054
+
1055
+ - `#I471925` - Cannot see a Dragged Task after Zoom In issue has been fixed.
1056
+ - `#I473517` - Incorrect taskbar render when unit is given in hour issue has been fixed.
1057
+ - `#I473451` - Segment taskbar is not rendered correctly issue has been fixed.
1058
+ - `#I471730` - Taskbar not rendered properly based on duration issue has been fixed.
1059
+
1060
+ ## 22.1.36 (2023-06-28)
1061
+
1062
+ ### GanttChart
1063
+
1064
+ #### Bug fixes
1065
+
1066
+ - `#I473901` - Baseline converted to milestone when task gets converted into milestone issue has been fixed.
1067
+ - `#I471926` - Console error occurs in critical path when data source is empty issue has been fixed.
1068
+ - `#I469289` - Fit to project is not working properly issue has been fixed.
1069
+ - `#I473341` - Tooltip template not working properly issue has been fixed.
1070
+ - `#I467372` - no drop icon is displayed while dropping in Gantt chart.
1071
+ - `#F182867` - Edit template for start date column not works issue has been fixed.
1072
+ - `#I470521` - Toolbar template is not working properly in react issue has been fixed.
1073
+ - `#I44322` - Row Selection behaviour occurs differently in grid and Gantt.
1074
+
1075
+ ## 22.1.34 (2023-06-21)
1076
+
1077
+ ### GanttChart
1078
+
1079
+ #### Features
1080
+
1081
+ -`#I43435` - Improved the user interface of taskbar resizing and moving actions in the Gantt Chart. Now, when users perform taskbar resizing or moving, a virtual element is displayed instead of updating the original taskbar element. This virtual element remains visible until the action is completed, providing users with a clear representation of the changes they are making. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/editing.html).
1082
+
1083
+ #### Breaking changes
1084
+
1085
+ - Connector lines have been changed from elements to SVG elements for UI improvement. This change has been made to enhance the user interface and provide a more visually appealing and flexible way of displaying connector lines.
1086
+
1087
+ ## 21.2.10 (2023-06-13)
1088
+
1089
+ ### GanttChart
1090
+
1091
+ #### Bug fixes
1092
+
1093
+ - `#I459187` - Newly added record missed at the bottom in virtual scroll issue has been fixed.
1094
+ - `#I469401` - Resource names gets duplicated in right label issue has been fixed.
1095
+ - `#I464184` - Progress width not updated properly in split tasks issue has been fixed.
1096
+ - `#F182318` - Progress width not updated properly in manual tasks after zooming action issue has been fixed.
1097
+
1098
+ - `#F182318` - Progress width not updated properly in manual tasks after zooming action issue has been fixed.
1099
+
1100
+ ## 21.2.9 (2023-06-06)
1101
+
1102
+ ### GanttChart
1103
+
1104
+ #### Bug fixes
1105
+
1106
+ - `#I467744` - Provided support for virtual scroll in resource view multitask bar.
1107
+ - `#I464831` - Incorrect render of segments when we give end date while declaring segment in data source issue has been fixed.
1108
+ - `#I461924` - Bug Script Error throws while using Virtualization with Collapse All action.
1109
+ - `#I469496` - Start date not updated properly for predecessor connected record issue has been fixed.
1110
+ - `#I465752` - Timeline start date gets changed when we perform right resizing or progress resizing issue has been fixed.
1111
+ - `#I463593` - True type font style is not updated in the footer.
1112
+ - `#I463666` - Bug Milestones not rendering correctly in hierarchy issue has been fixed.
1113
+ - `#I463231` - Selection is not maintained when we scroll issue has been fixed.
1114
+ - `#I462836` - Taskbar not rendered properly when the dependency is connected to the bottom task issue has been fixed.
1115
+ - `#I464999` - Expand or Collapse All causes improper view in virtual scrolling issue has been fixed.
1116
+ - `#I462469` - Virtual scrolling breaks in deleting the last record issue has been fixed.
1117
+ - `#I464528` - Outdent action does not work properly issue has been fixed.
1118
+ - `#I464592` - Progress values are incorrect in parent task after performing drag drop issue has been fixed.
1119
+
1120
+ - `#I467744` - Provided support for virtual scroll in resource view multitask bar.
1121
+ - `#I464831` - Incorrect render of segments when we give end date while declaring segment in data source issue has been fixed.
1122
+ - `#I462836` - Taskbar not rendered properly when the dependency is connected to the bottom task issue has been fixed.
1123
+
1124
+ ## 21.2.8 (2023-05-30)
1125
+
1126
+ ### GanttChart
1127
+
1128
+ #### Bug fixes
1129
+
1130
+ - `#I461738` - Updating custom column change the end date issue has been fixed
1131
+ - `#I461564` - Editing cell followed by context menu does not work issue has been fixed
1132
+ - `#I461800` - Console error while exporting pdf error has been fixed.
1133
+ - `#I464045` - Parent dependency renders though we set `allowParentDependency` as false issue has been fixed.
1134
+ - `#I462271` - Taskbar not rendered when we use taskbar template issue has been fixed.
1135
+ - `#I460869`- Issue in Resource view wont display resource name has been fixed
1136
+ - `#I461105` - Baseline dates rendered incorrectly in without `dayWorkingTime` issue has been fixed.
1137
+ -`#I460869`- Issue in Resource view wont display resource name has been fixed.
1138
+
1139
+ - `#I461105` - Baseline dates rendered incorrectly in without `dayWorkingTime` issue has been fixed.
1140
+
1141
+ ## 21.2.6 (2023-05-23)
1142
+
1143
+ ### GanttChart
1144
+
1145
+ #### Bug fixes
1146
+
1147
+ - `#I461435` - Adding and deleting record rapidly while displaying tooltip cause error has been fixed.
1148
+ - `#I461087` - Offset value getting modified incorrectly issue has been fixed.
1149
+ - `#I461778` - Misalignment in rows on Tree Grid and Gantt in virtual scroll issue has been fixed
1150
+
1151
+ ## 21.2.5 (2023-05-16)
1152
+
1153
+ ### GanttChart
1154
+
1155
+ #### Bug fixes
1156
+
1157
+ - `#I461778` - Misalignment in rows on Tree Grid and Gantt in virtual scroll issue has been fixed
1158
+ - `#I181309` - splitter position not updating after resize issue has been fixed.
1159
+ - `#I449506` - Moving child row referencing another parent row will not move all of the descendants of that another parent row issue has been fixed.
1160
+ - `#I457803` - Offset value is not correctly updated while connecting predecessor issue has been fixed.
1161
+ - `#I449944` - Zoom out button in toolbar not enabled once after zoom in operation issue has been fixed.
1162
+ - `#I434098` - Issue while rendering resource view without child mapping has been fixed.
1163
+
1164
+ - `#I449944` - Zoom out button in toolbar not enabled once after zoom in operation issue has been fixed.
1165
+ - `#I434098` - Issue while rendering resource view without child mapping has been fixed.
1166
+
1167
+ ## 21.2.4 (2023-05-09)
1168
+
1169
+ ### GanttChart
1170
+
1171
+ #### Bug fixes
1172
+
1173
+ - `#I457032` - Task label not rendered properly when we render as template issue has been fixed.
1174
+ - `#I457212` - Timeline renders different in `Firefox` and `Chrome` issue has been fixed.
1175
+ - `#I456146` - Console error occur while changing task field after removing toolbar issue has been fixed.
1176
+ - `#F181579` - Style not reflected on the notes column when we perform dialog edit issue has been fixed.
1177
+ - `#I456453` - `CSS class` is not updated while changing it through `updateRecordbyId` method issue has been fixed.
1178
+
1179
+ -`#I449944` - Zoom out is not enabled.- `#I457032` - Task label not rendered properly when we render as template issue has been fixed.
1180
+ - `#F181579` - Style not reflected on the notes column when we perform dialog edit issue has been fixed.
1181
+
1182
+ ## 21.2.3 (2023-05-03)
1183
+
1184
+ ### GanttChart
1185
+
1186
+ #### Bug fixes
1187
+
1188
+ - `#I441205` - Two spinner appears while performing action issue has been fixed.
1189
+ - `#I451257` - No proper template for manual milestone parent.
1190
+ - `#I443041` - Gantt react performance rendering issue during initial load has been fixed.
1191
+
1192
+ ## 21.1.41 (2023-04-18)
1193
+
1194
+ ### GanttChart
1195
+
1196
+ #### Bug fixes
1197
+
1198
+ - `#I453787` - Duration not calculated properly in hour duration unit issue has been fixed.
1199
+ - `#I453745` - Modified records in `actionBegin` event has invalid records issue has been fixed.
1200
+ - `#I449552` - Child record rendered in incorrect dates during initial load issue has been fixed.
1201
+ -`#I452233`- Parent Taskbar template not working properly in latest version.
1202
+ -`#I449864`- Holiday label is not visible when we don't set height.
1203
+ -`#I449674`- Cannot split task when the taskbar is rendered to one day.
1204
+ - `#I449757` - Taskbar width rendered incorrectly issue has been fixed.
1205
+
1206
+ -`I449864`- Holiday label is not visible when we don't set height.
1207
+
1208
+ ## 21.1.38 (2023-04-04)
1209
+
1210
+ ### GanttChart
1211
+
1212
+ #### Bug fixes
1213
+
1214
+ - `#I451243` - Unable to set zooming levels through `zoomingLevels` property issue has been fixed.
1215
+ - `#I447704` - Timeline tier is not changing dynamically issue has been fixed.
1216
+ - `I447465` - Incorrect progress value on parent task when child tasks have fractional duration issue has been fixed.
1217
+ -`I447475`- End key is not working properly issue has been fixed.
1218
+ -`#I447772` - Application freezing while changing holidays/weekend issue has been fixed.
1219
+
1220
+ - `#I451243` - Unable to set zooming levels through `zoomingLevels` property issue has been fixed.
1221
+ - `#I447704` - Timeline tier is not changing dynamically issue has been fixed.
1222
+ - `#I447772` - Application freezing while changing holidays/weekend issue has been fixed.
1223
+
1224
+ ## 21.1.37 (2023-03-29)
1225
+
1226
+ ### GanttChart
1227
+
1228
+ #### Bug fixes
1229
+
1230
+ - `#I432146` - Script error occurs while changing data source and resource simultaneously issue has been fixed.
1231
+ -`I441276`- Outdent task is not in correct index of modified records in `actionComplete` event issue has been fixed.
1232
+ -`I435254`, `I444942`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
1233
+
1234
+ - `#I432146` - Script error occurs while changing data source and resource simultaneously issue has been fixed.
1235
+ -`I435254`- Taskbar not rendered in Pdf exported file when `timelineUnitSize` is initialized issue has been fixed.
1236
+
1237
+ ## 21.1.35 (2023-03-23)
1238
+
1239
+ ### GanttChart
1240
+
1241
+ #### Features
1242
+
1243
+ - `#I419169` - Provided Taskbar drag and drop support for resource view in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/resource-multi-taskbar.html).
1244
+ - `#I417330` - Provided support to disable parent predecessor by using `allowParentDependency` property. Please find the `API` link [here](https://ej2.syncfusion.com/documentation/api/gantt/#allowparentdependency).
1245
+ - `#I413261` - Restricted offset value update based on enabling or disabling the `API`. Please find the
1246
+ `API` link [here](https://ej2.syncfusion.com/documentation/api/gantt/#updateoffsetontaskbaredit).
1247
+ - `#I420482` - Provided option to disable date validation at initial load based on enabling or disabling the `API`
1248
+ By disabling this `API` we can improve load time performance by two time. Please find the
1249
+ `API` link [here](https://ej2.syncfusion.com/documentation/api/gantt/#autocalculatedatescheduling).
1250
+
1251
+ - `#I419169` - Provided Taskbar drag and drop support for resource view in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/resource-multi-taskbar).
1252
+ - `#I417330` - Provided support to disable parent predecessor by using `allowParentDependency` property. Please find the `API` link [here](https://ej2.syncfusion.com/angular/documentation/api/gantt/#allowparentdependency).
1253
+ - `#I413261` - Restricted offset value update based on enabling or disabling the `API`. Please find the
1254
+ `API` link [here](https://ej2.syncfusion.com/angular/documentation/api/gantt/#updateoffsetontaskbaredit).
1255
+ - `#I420482` - Provided option to disable date validation at initial load based on enabling or disabling the `API`
1256
+ By disabling this `API` we can improve load time performance by two time. Please find the
1257
+ `API` link [here](https://ej2.syncfusion.com/angular/documentation/api/gantt/#autocalculatedatescheduling).
1258
+
1259
+ ## 20.4.54 (2023-03-14)
1260
+
1261
+ ### GanttChart
1262
+
1263
+ #### Bug fixes
1264
+
1265
+ -`I442012`- Pdf export padding property for column header is not working properly issue has been fixed.
1266
+ -`F180721`- Script error occurs when critical path is enabled in virtualization mode issue has been fixed.
1267
+ -`F180854`- Successor task not updated when editing predecessor task issue has been fixed.
1268
+ -`I436189`- Two different payloads passed to put and post for a single add action issue has been fixed.
1269
+ -`I440310`- Script error throws when parent ID mapped issue has been fixed.
1270
+ -`I441047`- An exception is thrown when attempting to update `task fields` and `data source`.
1271
+
1272
+ ## 20.4.53 (2023-03-07)
1273
+
1274
+ ### GanttChart
1275
+
1276
+ #### Bug fixes
1277
+
1278
+ -`I413261`- Validate predecessor link on editing issue has been fixed.
1279
+ -`I441394`- Gantt Column name doesn't change respect to changing of culture at runtime issue has been fixed.
1280
+ -`I437053`- Task label not updated correctly When dynamically updating data source issue has been fixed.
1281
+
1282
+ ## 20.4.52 (2023-02-28)
1283
+
1284
+ ### GanttChart
1285
+
1286
+ #### Bug fixes
1287
+
1288
+ -`I435386`- Column template not working in `Vue` platform issue has been fixed.
1289
+ -`I426170`- Incorrect Start Date Update for Unscheduled Task When Editing Parent Start Date.
1290
+ -`I432910`- zoom in not disabled issue has been fixed.
1291
+ -`I431348`- Updating Day Working Time Property Dynamically in UTC Timezone Results in Invalid Dates.
1292
+ -`I394676`- Incorrect Date in milestone while on load and editing issue has been fixed.
1293
+ -`#I436476`- Gantt Task doesn't get updated after Batch Update issue is fixed.
1294
+
1295
+ -`I394676`- Incorrect Date in milestone while on load and editing issue has been fixed.
1296
+
1297
+ ## 20.4.51 (2023-02-21)
1298
+
1299
+ ### GanttChart
1300
+
1301
+ #### Bug fixes
1302
+
1303
+ -`I432910`- Export Issue with Predecessor Connectivity for Filtered Data.
1304
+ -`#I434098`- Script error occurs when updating resources dynamically without child mapping.
1305
+
1306
+ -`#I434098`- Script error occurs when updating resources dynamically without child mapping.
1307
+
1308
+ ## 20.4.50 (2023-02-14)
1309
+
1310
+ ### GanttChart
1311
+
1312
+ #### Bug fixes
1313
+
1314
+ - `#I431629`- A script error is thrown while performing tab navigation on the last row.
1315
+
1316
+ ## 20.4.49 (2023-02-07)
1317
+
1318
+ ### GanttChart
1319
+
1320
+ #### Bug fixes
1321
+
1322
+ - `#I429875` - Console error while using self-referential data issue has been fixed.
1323
+ - `#I428914` - Duration value is not maintained when using `valueAccessor` issue has been fixed.
1324
+ - `#I426170` - Action complete is not triggered properly for Zoom In and Zoom to fit in Gantt chart.
1325
+
1326
+ -`#I428914`- Duration value is not maintained when using `valueAccessor` issue has been fixed.
1327
+
1328
+ ## 20.4.48 (2023-02-01)
1329
+
1330
+ ### GanttChart
1331
+
1332
+ #### Bug fixes
1333
+
1334
+ - `#I427837` - Baseline renders with incorrect date in difference timezone issue has been fixed.
1335
+ - `#I430365` - Child tasks not updated after updating parent task predecessor has been fixed.
1336
+ - `#I428064` - Incorrect unit in timeline issue has been fixed.
1337
+
1338
+ - `#I428064` - Incorrect unit in timeline issue has been fixed.
1339
+
1340
+ ## 20.4.43 (2023-01-10)
1341
+
1342
+ ### GanttChart
1343
+
1344
+ #### Bug fixes
1345
+
1346
+ - `#I426170` - Incorrect request type in zooming action has been fixed.
1347
+ - `#FB39646` - Incorrect index value during row drag and drop has been fixed.
1348
+
1349
+ ## 20.4.42 (2023-01-04)
1350
+
1351
+ ### GanttChart
1352
+
1353
+ #### Bug fixes
1354
+
1355
+ - `#I421870`- Record does not update properly when its modified in `actionBegin` event issue has been fixed.
1356
+ - `#I420414` - Row height issue in task mode has been fixed.
1357
+
1358
+ - `#I420414` - Row height issue in task mode has been fixed.
1359
+
1360
+ ## 20.4.40 (2022-12-28)
1361
+
1362
+ ### GanttChart
1363
+
1364
+ #### Bug fixes
1365
+
1366
+ - `#I420702` - Persistence settings prevent changing the timeline settings issue has been fixed.
1367
+ - `#I422731` - Issue when predecessor is given for unscheduled parent issue has been fixed.
1368
+ - `#I423435` - Customize baseline colour in `queryTaskbarInfo` event in segmented tasks issue has been fixed.
1369
+ - `#I420280` - The `actionBegin` event receives more records as modified data when task is edited issue has been fixed.
1370
+ - `#I422943` - Taskbar appearing on next date issue has been fixed.
1371
+ - `#I422476` - Progress value issue in parent task has been fixed.
1372
+ - `#I425389`- Baseline not properly rendered after moving Milestone.
1373
+
1374
+ - `#I420702` - Persistence settings prevent changing the timeline settings issue has been fixed.
1375
+ - `#I422943` - Taskbar appearing on next date issue has been fixed.
1376
+
1377
+ ## 20.4.38 (2022-12-21)
1378
+
1379
+ ### GanttChart
1380
+
1381
+ #### Features
1382
+
1383
+ - `#I237939`,`#I255626`,`#I398597` - Provided `RTL` support in Gantt chart. Please find the documentation link [here](https://ej2.syncfusion.com/documentation/gantt/global-local/#right-to-left-rtl).
1384
+ - Provided `Shimmer` support in Gantt chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/loading-animation).
1385
+
1386
+ - `#I237939`,`#I255626`,`#I398597` - Provided `RTL` support in Gantt chart. Please find the documentation link [here](https://ej2.syncfusion.com/angular/documentation/gantt/global-local/#right-to-left-rtl).
1387
+ - Provided `Shimmer` support in Gantt chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/loading-animation).
1388
+
1389
+ #### Bug fixes
1390
+
1391
+ - `#I417035` - Expand Collapse not working properly after cell editing issue has been fixed.
1392
+ - `#I421663` - The baseline end date has not been properly validated issue has been fixed.
1393
+
1394
+ ## 20.3.60 (2022-12-06)
1395
+
1396
+ ### GanttChart
1397
+
1398
+ #### Bug fixes
1399
+
1400
+ - `#I420414` - Unable to disable edit dialog fields in general tab issue has been fixed.
1401
+ - `#I420280` - The `actionBegin` event receives more records as modified data when a task is resized issue has been fixed.
1402
+ - `#I420126` - Error thrown when deleting a Unassigned task in the Resource View issue has been fixed.
1403
+ - `#I415400` - Cell Edit does not save when clicking on the chart side issue has been fixed.
1404
+ - `#I419273` - End Key not working as expected when selection type set to Both.
1405
+
1406
+ ## 20.3.59 (2022-11-29)
1407
+
1408
+ ### GanttChart
1409
+
1410
+ #### Bug fixes
1411
+
1412
+ - `#I413261` - Dependency values for the parent task are not properly updated issue has been fixed.
1413
+ - `#I419062` - Edit type issue when datasource is undefined issue has been fixed.
1414
+ - `#I417042` - A console error is thrown when updating the parent task's start date.
1415
+ - `#I419262` - The dependency line is rendered even after cancel.
1416
+
1417
+ ## 20.3.58 (2022-11-22)
1418
+
1419
+ ### GanttChart
1420
+
1421
+ #### Bug fixes
1422
+
1423
+ - `#I416610` - Able to scroll vertically when virtual scrolling enabled without scrollable records issue has been fixed.
1424
+ - `#I417049` - Adding duration to an unscheduled task affects the project start date.
1425
+
1426
+ ## 20.3.57 (2022-11-15)
1427
+
1428
+ ### GanttChart
1429
+
1430
+ #### Bug fixes
1431
+
1432
+ - `#I413261` - Dependency values for the parent task are not properly updated issue has been fixed.
1433
+ - `#I410200` - Timeline headers disappears when timeline changes dynamically.
1434
+ - `#I413560` - Datasource Property not updated properly after row indent and outdent issue has been fixed.
1435
+ - `#I65261` - Filtering functionality issues in duration column.
1436
+ - `#I65321` - Task duration is not calculated properly in dialog edit.
1437
+
1438
+ ## 20.3.56 (2022-11-08)
1439
+
1440
+ ### GanttChart
1441
+
1442
+ #### Bug fixes
1443
+
1444
+ - `#I414182` - Datasource Property not updated properly after row drag and drop issue has been fixed.
1445
+ - `#I413625` - Current view data not updated properly when dynamically change the view type issue has been fixed.
1446
+ - `#I414481` - Dynamically updating the `renderBaseline` property in immutable mode issue has been fixed.
1447
+
1448
+ ## 20.3.52 (2022-10-26)
1449
+
1450
+ ### GanttChart
1451
+
1452
+ #### Bug fixes
1453
+
1454
+ - `#I413261` - Dependency values for the parent task are not properly updated issue has been fixed.
1455
+ - `#I412821` - Row drag and drop is not working properly when Virtualization is enabled.
1456
+
1457
+ ## 20.3.50 (2022-10-18)
1458
+
1459
+ ### GanttChart
1460
+
1461
+ #### Bug fixes
1462
+
1463
+ - `#I409097` - Deleting record when search text is selected issue has been fixed.
1464
+ - `#I404228` - Saving record even when in edited state issue has been fixed.
1465
+ - `#I413093` - Pdf export is not working in latest version issue has been fixed.
1466
+
1467
+ - `#I404228` - Saving record even when in edited state issue has been fixed.
1468
+ - `#I412821` - Row drag and drop is not working properly when Virtualization is enabled.
1469
+
1470
+ ## 20.3.49 (2022-10-11)
1471
+
1472
+ ### GanttChart
1473
+
1474
+ #### Bug fixes
1475
+
1476
+ - `#I395003` - Gantt records disappear when scrolling up and down quickly issue has been fixed.
1477
+ - `#I407437` - Add new record in resource view without child mapping issue has been fixed.
1478
+ - `#I407832` - Console error when all the element is disabled in context menu.
1479
+ - `#I407716` - Data source update on load time issue has been fixed.
1480
+ - `#I400913`, `#I405837` - Pdf export is not working when the data has Hebrew and Vietnamese characters.
1481
+
1482
+ - `#I407437` - Add new record in resource view without child mapping issue has been fixed.
1483
+ - `#I405837` - Pdf export is not working when the data has Hebrew and Vietnamese characters.
1484
+
1485
+ ## 20.3.48 (2022-10-05)
1486
+
1487
+ ### GanttChart
1488
+
1489
+ #### Bug fixes
1490
+
1491
+ - `#I408288` - Timeline rendering is incomplete when data is rebinded issue has been fixed.
1492
+ - `#I404228` - Issue in saving data in segment has been fixed.
1493
+ - `#I406597` - Duplicate record in the data source issue has been fixed.
1494
+ - `#I405108` - Unable to customize event marker tooltip issue has been fixed.
1495
+ - `#F176879` - Unable to customize the dependency name issue has been fixed.
1496
+ - `#I409288` - Exception when the expand change dynamically has been fixed.
1497
+
1498
+ - `#I404228` - Issue in saving data in segment has been fixed.
1499
+ - `#I409288` - Exception when the expand change dynamically has been fixed.
1500
+
1501
+ ## 20.3.47 (2022-09-29)
1502
+
1503
+ ### GanttChart
1504
+
1505
+ #### Features
1506
+
1507
+ - `#F145182`, `#I260943`, `#I269630`, `#I273259`, `#I320454`, `#I326471`, `#I336212`, `#I340854`, `#I341129`, `#F171031`, `#I364331` - Provided Predecessor support for parent task in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/editing).
1508
+ - `#I315577` - Provided Row Drag and Drop support in Virtual Scrolling feature for Gantt Chart.
1509
+ - `#F165210` - Provided excel filter support in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/filtering).
1510
+ - `#I246769`, `#I316949`, `#I334501`, `#F159768`, `#F167576` - Provided support to define task id as string type for Gantt Chart. Please find the `API` link [here](https://ej2.syncfusion.com/documentation/api/gantt/taskFields/#id).
1511
+ - `#FB36072` - Provided support for Critical Path with Multi Taskbar enabled.
1512
+
1513
+ - `#F145182`, `#I260943`, `#I269630`, `#I273259`, `#I320454`, `#I326471`, `#I336212`, `#I340854`, `#I341129`, `#F171031`, `#I364331` - Provided Predecessor support for parent task in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/editing).
1514
+ - `#I315577` - Provided Row Drag and Drop support in Virtual Scrolling feature for Gantt Chart.
1515
+ - `#F165210` - Provided excel filter support in Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/filtering).
1516
+ - `#I246769`, `#I316949`, `#I334501`, `#F159768`, `#F167576` - Provided support to define task id as string type for Gantt Chart. Please find the `API` link [here](https://ej2.syncfusion.com/angular/documentation/api/gantt/taskFields/#id).
1517
+ - `#FB36072` - Provided support for Critical Path with Multi Taskbar enabled.
1518
+
1519
+ #### Bug fixes
1520
+
1521
+ - `#F177237` - The `currentViewData` with dependencies were not exported correctly in `PDFExport` issue has been fixed.
1522
+ - `#I402913` - Checkbox selection must be completed with a single click issue has been fixed.
1523
+ - `#I404007` - Filter Menu not closed when focus is removed issue has been fixed.
1524
+ - `#I403823` - Custom Column values not updated when editing in tab issue has been fixed.
1525
+ - `#I403221` - Issue in deleting parent record in resource view has been fixed.
1526
+
1527
+ - `#I404007` - Filter Menu not closed when focus is removed issue has been fixed.
1528
+
1529
+ ## 20.2.49 (2022-09-13)
1530
+
1531
+ ### GanttChart
1532
+
1533
+ #### Bug fixes
1534
+
1535
+ - `#I403222` - Console error occurs in resource view with enabled persistence issue has been fixed.
1536
+
1537
+ ## 20.2.46 (2022-08-30)
1538
+
1539
+ ### GanttChart
1540
+
1541
+ #### Bug fixes
1542
+
1543
+ - `#F176984` - Timeline is extended when the splitter position is moved issue has been fixed.
1544
+ - `#I398394` - Row drag and drop not working properly on resource view sample issue has been fixed.
1545
+ - `#I396036` - Baselines become milestones when start date and end date are mapped.
1546
+
1547
+ - `#F176984` - Timeline is extended when the splitter position is moved issue has been fixed.
1548
+
1549
+ ## 20.2.45 (2022-08-23)
1550
+
1551
+ ### GanttChart
1552
+
1553
+ #### Bug fixes
1554
+
1555
+ - `#I389542` - Filter records with hierarchy mode as both shows no record to display issue has been fixed.
1556
+
1557
+ ## 20.2.44 (2022-08-16)
1558
+
1559
+ ### GanttChart
1560
+
1561
+ #### Bug fixes
1562
+
1563
+ - `#I394194` - Timeline changes when toggling critical path issue has been fixed.
1564
+ - `#I388575` - Gantt chart disappears when searching is performed with tasks in collapsed state with virtualization issue has been fixed.
1565
+ - `#I394195` - Week start day not working properly after perform Zooming actions issue has been fixed.
1566
+ - `#I393709` - Baseline milestone not rendered in proper position .
1567
+ - `#I394223` - Gantt Chart does not update data source when adding new record.
1568
+
1569
+ - `#I393709` - Baseline milestone not rendered in proper position.
1570
+
1571
+ ## 20.2.43 (2022-08-08)
1572
+
1573
+ ### GanttChart
1574
+
1575
+ #### Bug fixes
1576
+
1577
+ - `#I393339` - Empty record is displayed after searching a text when using the refresh method issue has been fixed.
1578
+ - `#I392655` - Issue in deleting multiple tasks, when one task is collapsed issue has been fixed.
1579
+ - `#I394407` - Script error occurs when we edit the baseline date issue has been fixed.
1580
+ - `#I376455` - Unable to focus on chart element when editing is not enabled has been fixed.
1581
+ - `#I393670`, `#I393633` - End date calculated wrongly for adding new task after zoom to fit is performed issue has been fixed.
1582
+ - `#I391704`-Need to disable HTML encoding in tooltip has been fixed.
1583
+ - `#F149986` - Unable to use drop down edit in progress column has been fixed.
1584
+
1585
+ ## 20.2.39 (2022-07-19)
1586
+
1587
+ ### GanttChart
1588
+
1589
+ #### Bug fixes
1590
+
1591
+ - `#I389834` - Records position not updated properly in datasource when we drag and drop the records issue has been fixed.
1592
+
1593
+ ## 20.2.38 (2022-07-12)
1594
+
1595
+ ### GanttChart
1596
+
1597
+ #### Bug fixes
1598
+
1599
+ - `#I380929` - Baseline end date issue for milestone with same baseline start and end date has been fixed.
1600
+ - `#I385298` - Bottom Tier not partitioned properly when zoom to fit issue has been fixed.
1601
+ - `#I388575` - Virtual scroll issue when collapsed and searched has been fixed
1602
+
1603
+ ## 20.2.36 (2022-06-30)
1604
+
1605
+ ### GanttChart
1606
+
1607
+ #### Features
1608
+
1609
+ - `#I233407`, `#I258725`, `#I280586`, `#I291191`, `#I304599`, `#F160011`, `#I310340`, `#F163773`, `#I323187`, `#I323187`, `#I346348` - Provided Critical Path support for Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/demos/#/bootstrap5/gantt/critical-path).
1610
+ - Provided State Persistence support for Gantt Chart. Please find the documentation link [here](https://ej2.syncfusion.com/javascript/documentation/gantt/state-persistence).
1611
+
1612
+ - `#I233407`, `#I258725`, `#I280586`, `#I291191`, `#I304599`, `#F160011`, `#I310340`, `#F163773`, `#I323187`, `#I323187`, `#I346348` - Provided Critical Path support for Gantt Chart. Please find the demo link [here](https://ej2.syncfusion.com/angular/demos/#/bootstrap5/gantt/critical-path).
1613
+ - Provided State Persistence support for Gantt Chart. Please find the documentation link [here](https://ej2.syncfusion.com/angular/documentation/gantt/state-persistence).
1614
+
1615
+ #### Bug fixes
1616
+
1617
+ - `#I379308, #I380615` - Baseline end date issue for milestone with same baseline start and end date has been fixed.
1618
+ - `#I383128` - DataSource gets updated wrongly when we update the data with invalid `parentID` issue has been fixed.
1619
+ - `#I378077` - Newly added records not gets refreshed when running the sample using `nodejs` issue has been resolved.
1620
+ - `#I382484` - Gantt records gets repeated when we perform scrolling in virtual data issue has been fixed.
1621
+ - `#I376455` - Tab key navigation not working properly when moving to new records has been fixed.
1622
+
1623
+ - `#I376455` - Tab key navigation not working properly when moving to new records has been fixed.
1624
+ - `#I383128` - DataSource gets updated wrongly when we update the data with invalid `parentID` issue has been fixed.
1625
+ - `#I376455` - Unable to focus on chart element when editing is not enabled has been fixed.
1626
+ - `#I391704`-Need to disable HTML encoding in tooltip has been fixed.
1627
+
1628
+ ## 20.1.60 (2022-06-14)
1629
+
1630
+ ### GanttChart
1631
+
1632
+ #### Bug fixes
1633
+
1634
+ - `#367483` - Indent Outdent toolbar options appearing when edit settings is not defined issue has been been fixed.
1635
+ - `#384296` - Unable to draw dependency when progress mapping is disabled issue has been been fixed.
1636
+ - `#381374` - Editing milestone duration varies the start date issue has been been fixed.
1637
+
1638
+ - `#367483` - Indent Outdent toolbar options appearing when edit settings is not defined issue has been been fixed.
1639
+ - `#384296` - Unable to draw dependency when progress mapping is disabled issue has been been fixed.
1640
+
1641
+ ## 20.1.59 (2022-06-07)
1642
+
1643
+ ### GanttChart
1644
+
1645
+ #### Bug fixes
1646
+
1647
+ - `#379229` - Pdf export is not working when using custom date format issue has been fixed.
1648
+ - `#381109` - Issue when Zoom To Fit with unscheduled tasks has been fixed.
1649
+ - `#382884` - work value calculation issue for parent task has been fixed.
1650
+
1651
+ ## 20.1.58 (2022-05-31)
1652
+
1653
+ ### GanttChart
1654
+
1655
+ #### Bug fixes
1656
+
1657
+ - `#380136` - End date is not updated when we update the resource unit via `updateRecordByID` method.
1658
+ - `#378491` - Data is not displayed when we frequently move between different tabs has been fixed.
1659
+ - `#379660` - Script error thrown when switching between tabs has been fixed.
1660
+
1661
+ - `#378491` - Data is not displayed when we frequently move between different tabs has been fixed.
1662
+ - `#379660` - Script error thrown when switching between tabs has been fixed.
1663
+
1664
+ ## 20.1.56 (2022-05-17)
1665
+
1666
+ ### GanttChart
1667
+
1668
+ #### Bug fixes
1669
+
1670
+ - `#F174816` - Landscape page orientation is not working when exporting Pdf has been fixed.
1671
+ - `#377857` - Task not assigned to resources when dynamically changes from project view into resource view has been fixed.
1672
+
1673
+ ## 20.1.55 (2022-05-12)
1674
+
1675
+ ### GanttChart
1676
+
1677
+ #### Bug fixes
1678
+
1679
+ - `#376228` - Duration is not updated while updating resource units using `updateRecordByID` method issue has been fixed.
1680
+ - `#370224` - Filtering issue when rendering Gantt inside the modal has been fixed.
1681
+ - `#376455` - Tab key navigation not working properly when moving from grid to timeline issue has been fixed.
1682
+
1683
+ - `#376455` - Tab key navigation not working properly when moving from grid to timeline issue has been fixed.
1684
+
1685
+ ## 20.1.52 (2022-05-04)
1686
+
1687
+ ### GanttChart
1688
+
1689
+ #### Bug fixes
1690
+
1691
+ - `#372661` - Data not properly updated in the Gantt Chart when switching between list view issue has been fixed.
1692
+
1693
+ ## 20.1.51 (2022-04-26)
1694
+
1695
+ ### GanttChart
1696
+
1697
+ #### Bug fixes
1698
+
1699
+ - `#373529` - Task label is not properly displayed in pdf export issue has been fixed.
1700
+ - `#373829` - Top tier and bottom tier partitioning issue in quarterly mode has been fixed.
1701
+ - `#374212, #372614` - Timeline is not rendered properly when using hour format in `DST` issue has been fixed.
1702
+ - `#367794` - Cell editing issue in internet explorer has been fixed.
1703
+
1704
+ - `#373529` - Task label is not properly displayed in pdf export issue has been fixed.
1705
+ - `#373829` - Top tier and bottom tier partitioning issue in quarterly mode has been fixed.
1706
+
1707
+ ## 20.1.50 (2022-04-19)
1708
+
1709
+ ### GanttChart
1710
+
1711
+ #### Bug fixes
1712
+
1713
+ - `#372623` - New record keeps an editable state in dependency tab even after switching the tabs has been fixed.
1714
+ - `#373803` - Scrollbar not available in notes tab issue has been fixed.
1715
+ - `#372344` - Issue in `taskLabelTemplate` using `ngTemplate` has been fixed.
1716
+ - `#372131` - Issue in `taskbarTemplate` with `enableMultiTaskbar` enabled has been fixed.
1717
+
1718
+ ## 20.1.48 (2022-04-12)
1719
+
1720
+ ### GanttChart
1721
+
1722
+ #### Bug fixes
1723
+
1724
+ - `#371080` - Issue in `actionBegin` event for cancelling the row drag and drop action using request type `beforeDrop` has been fixed.
1725
+ - `#374064` - Gantt height not gets responsive when collapsing all tasks in `auto` mode.
1726
+ - `#372623` - Filter popup gets closed automatically When clicking between the filter fields has been fixed.
1727
+
1728
+ - `#372623` - Filter popup gets closed automatically When clicking between the filter fields has been fixed.
1729
+
1730
+ ## 20.1.47 (2022-04-04)
1731
+
1732
+ ### GanttChart
1733
+
1734
+ #### Bug fixes
1735
+
1736
+ - `#300959` - Provided support to fill empty space with extended timeline in zoom out action.
1737
+ - `#371372` - Unable to change end Date of manual parent task issue has been fixed.
1738
+ - `#363003` - Child mapping order not maintained in data source property issue has been fixed.
1739
+
1740
+ ## 19.4.56 (2022-03-15)
1741
+
1742
+ ### GanttChart
1743
+
1744
+ #### Bug fixes
1745
+
1746
+ - `#369264` - Event marker labels not visible when there is single record has been fixed
1747
+ - `#362146` - Row customization using `rowDataBound` event in `enableImmutableMode` issue has been fixed
1748
+ - `#363336` - Child records not updated properly in specific index issue has been fixed.
1749
+ - `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
1750
+ - `#363752` - Issue in assigning custom zooming levels in `load` event has been fixed.
1751
+ - `#368549` - Gantt chart indentation issue while adding a child task has been fixed.
1752
+ - `#359455` - Issue in giving height as view port for parent container has been fixed.
1753
+
1754
+ - `#369264` - Event marker labels not visible when there is single record has been fixed
1755
+ - `#363752` - Issue in assigning custom zooming levels in `load` event has been fixed.
1756
+ - `#362146` - Row customization using `rowDataBound` event in `enableImmutableMode` issue has been fixed
1757
+ - `#363336` - Child records not updated properly in specific index issue has been fixed.
1758
+ - `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
1759
+ - `#368549` - Gantt chart indentation issue while adding a child task has been fixed.
1760
+
1761
+ ## 19.4.55 (2022-03-08)
1762
+
1763
+ ### GanttChart
1764
+
1765
+ #### Bug fixes
1766
+
1767
+ - `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
1768
+ - `#365994` - Right and left label template not working in `vue` has been fixed.
1769
+
1770
+ - `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
1771
+
1772
+ ## 19.4.54 (2022-03-01)
1773
+
1774
+ ### GanttChart
1775
+
1776
+ #### Bug fixes
1777
+
1778
+ - `#366296` - When moving from once cell to another cell using tab key navigation issue has been fixed.
1779
+ - `#363358`,`F172781` - Drag and drop not working properly after row gets collapsed issue has been fixed.
1780
+
1781
+ ## 19.4.53 (2022-02-22)
1782
+
1783
+ ### GanttChart
1784
+
1785
+ #### Bug fixes
1786
+
1787
+ - `#365463` - Gantt timeline view gets changed when resize the task to left side has been fixed.
1788
+
1789
+ ## 19.4.52 (2022-02-15)
1790
+
1791
+ ### GanttChart
1792
+
1793
+ #### Bug fixes
1794
+
1795
+ - `#360085` - Issue in deleting a task after performing expand collapse action for multiple times has been fixed.
1796
+ - `#364950` - The `taskLabel` property does not show the task name properly when giving name with space has been fixed.
1797
+
1798
+ - `#364950` - The `taskLabel` property does not show the task name properly when giving name with space has been fixed.
1799
+
1800
+ ## 19.4.50 (2022-02-08)
1801
+
1802
+ ### GanttChart
1803
+
1804
+ #### Bug fixes
1805
+
1806
+ - `#362011` - Date alignment issue with Gantt Zoom to fit top tier and bottom tier has been fixed.
1807
+ - `#364643` - Extra fields are added in `dataSource` property for bottom position issue has been fixed.
1808
+ - `#363210` - Issue in performing edit dialog when we map only segments tab in `editDialogFields` has been fixed.
1809
+ - `#364723` - Issue in updating `dataSource` property using insert key has been fixed.
1810
+ - `#364643` - New record added in the top of datasource when row position is set as Bottom has been fixed.
1811
+
1812
+ - `#363210` - Issue in performing edit dialog when we map only segments tab in `editdialogfields` has been fixed.
1813
+
1814
+ ## 19.4.47 (2022-01-25)
1815
+
1816
+ ### GanttChart
1817
+
1818
+ #### Bug fixes
1819
+
1820
+ - `#356978` - Issue in disable the initial move of taskbar drag has been fixed.
1821
+ - `#357647` - Issue in enabling scroll top during load time has been fixed.
1822
+ - `#360893` - Issue in data source not updating when dragging and dropping child record has been fixed.
1823
+ - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
1824
+ - `#361492` - Dragged row does not disappear when the row dropped outside the Gantt issue has been fixed.
1825
+ - `#360381` - Issue in clicking on date picker while filtering has been fixed.
1826
+ - `#362566` - Child records do not indent properly when immutable mode is enabled issue has been fixed
1827
+
1828
+ - `#356978` - Issue in disable the initial move of taskbar drag has been fixed.
1829
+ - `#360893` - Issue in data source not updating when dragging and dropping child record has been fixed.
1830
+ - `#362566` - Child records do not indent properly when immutable mode is enabled issue has been fixed.
1831
+
1832
+ ## 19.4.43 (2022-01-18)
1833
+
1834
+ ### GanttChart
1835
+
1836
+ #### Bug fixes
1837
+
1838
+ - `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
1839
+ - `#360424` - Issue in performing drag and drop when resource is set to null has been fixed.
1840
+ - `#360085` - Issue in adding new record after performing expand collapse action for multiple times has been fixed.
1841
+ - `#360081` - Console error thrown when we assign resources to parent tasks has been fixed.
1842
+
1843
+ ## 19.4.42 (2022-01-11)
1844
+
1845
+ ### GanttChart
1846
+
1847
+ #### Bug fixes
1848
+
1849
+ - `#354721` - Issue in rendering milestone based on the milestone mapping in datasource has been fixed.
1850
+ - `#358683` - Toolbar gets hide after `expandAll` and `collapseAll` is performed issue has been fixed.
1851
+
1852
+ ## 19.4.41 (2022-01-04)
1853
+
1854
+ ### GanttChart
1855
+
1856
+ #### Bug fixes
1857
+
1858
+ - `#355824, #360027` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
1859
+ - `#F171256` - Issue in Localization for the word New Task has been fixed.
1860
+
1861
+ - `#355824` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
1862
+
1863
+ ## 19.4.40 (2021-12-28)
1864
+
1865
+ ### GanttChart
1866
+
1867
+ #### Bug fixes
1868
+
1869
+ - `#357340` - Issue with Gantt `selectedRowIndex` property when deleted the selected item in last row.
1870
+
1871
+ ## 19.4.38 (2021-12-17)
1872
+
1873
+ ### GanttChart
1874
+
1875
+ #### Bug fixes
1876
+
1877
+ - `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
1878
+ - `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
1879
+ - `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
1880
+
1881
+ - `#346141` - Gantt manipulates and changes task data dates from original data issue has been fixed.
1882
+
1883
+ #### Breaking Changes
1884
+
1885
+ - Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
1886
+
1887
+ ## 19.3.56 (2021-12-02)
1888
+
1889
+ ### GanttChart
1890
+
1891
+ #### Bug fixes
1892
+
1893
+ - `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
1894
+ - `#346909` - Issue in disable custom context menu has been fixed.
1895
+
1896
+ - `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
1897
+
1898
+ ## 19.3.55 (2021-11-23)
1899
+
1900
+ ### GanttChart
1901
+
1902
+ #### Bug fixes
1903
+
1904
+ - `#347753` - Issue in `defaultedit` edit type has been fixed.
1905
+
1906
+ ## 19.3.53 (2021-11-12)
1907
+
1908
+ ### GanttChart
1909
+
1910
+ #### Bug fixes
1911
+
1912
+ - `#342557` - In fixed work type duration update issue has been fixed.
1913
+
1914
+ ## 19.3.48 (2021-11-02)
1915
+
1916
+ ### GanttChart
1917
+
1918
+ #### Bug fixes
1919
+
1920
+ - `#343417` - Issue in updating row index after row drag and drop has been fixed.
1921
+ - `#346516` - Issue in context menu after cell editing has been fixed.
1922
+ - `#346736` - Issue in rendering connector points when progress field is not mapped has been fixed.
1923
+
1924
+ - `#346516` - Issue in context menu after cell editing has been fixed.
1925
+ - `#346736` - Issue in rendering connector points when progress field is not mapped has been fixed.
1926
+
1927
+ ## 19.3.47 (2021-10-26)
1928
+
1929
+ ### GanttChart
1930
+
1931
+ #### Bug fixes
1932
+
1933
+ - `#343991` - Additional parameters are not passed to `BatchUpdate` method when deleting the row issue has been fixed.
1934
+ - `#344100` - Issue in cancelling the drawing of predecessor line in `actionBegin` event has been fixed.
1935
+ - `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
1936
+ - `#341691` - Bring back browser default context menu in dialog editing has been fixed.
1937
+
1938
+ - `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
1939
+ - `#341691` - Bring back browser default context menu in dialog editing has been fixed.
1940
+
1941
+ #### Breaking Changes
1942
+
1943
+ - Add and Edit dialog is now rendered as direct child to *body* element.
1944
+
1945
+ ## 19.3.46 (2021-10-19)
1946
+
1947
+ ### GanttChart
1948
+
1949
+ #### Bug fixes
1950
+
1951
+ - `#343417` - Issue in CRUD operations when using datamanager data has been fixed.
1952
+ - `#340739` - Vertical grid line issue while changing height dynamically has been fixed.
1953
+ - `#F168970` - Issue in updating Segments data issue has been fixed.
1954
+
1955
+ - `#343417` - Issue in CRUD operations when using datamanager data has been fixed.
1956
+ - `#340739` - Vertical grid line issue while changing height dynamically has been fixed.
1957
+
1958
+ ## 19.3.45 (2021-10-12)
1959
+
1960
+ ### GanttChart
1961
+
1962
+ #### Bug fixes
1963
+
1964
+ - `#342557` - In fixed work type duration update issue has been fixed.
1965
+ - `#340406` - Misalignment while using line height property issue has been fixed.
1966
+ - `#310346` - Pdf export issue while changing date format has been fixed.
1967
+
1968
+ - `#340406` - Misalignment while using line height property issue has been fixed.
1969
+ - `#310346` - Pdf export issue while changing date format has been fixed.
1970
+
1971
+ ## 19.3.44 (2021-10-05)
1972
+
1973
+ ### GanttChart
1974
+
1975
+ #### New Features
1976
+
1977
+ - `#304621, #322659` - Provided percentage support for height and width of Gantt element.
1978
+
1979
+ - `#322659` - Provided percentage support for height and width of Gantt element.
1980
+
1981
+ ## 19.2.62 (2021-09-14)
1982
+
1983
+ ### GanttChart
1984
+
1985
+ #### Bug fixes
1986
+
1987
+ - `#340421` - In smaller resolution the splitter appeared in wrong position issue has been fixed.
1988
+ - `#341502` - Indicators disappear when datasource changed dynamically issue has been fixed.
1989
+
1990
+ - `#340421` - In smaller resolution the splitter appeared in wrong position issue has been fixed.
1991
+
1992
+ ## 19.2.60 (2021-09-07)
1993
+
1994
+ ### GanttChart
1995
+
1996
+ #### Bug fixes
1997
+
1998
+ - `#340155` - Dialog closes when pressing insert key issue has been fixed.
1999
+ - `#333851` - Dynamically changing the holidays issue has been fixed.
2000
+
2001
+ ## 19.2.59 (2021-08-31)
2002
+
2003
+ ### GanttChart
2004
+
2005
+ #### Bug fixes
2006
+
2007
+ - `#339434` - Issue in tooltip has been resolved.
2008
+
2009
+ ## 19.2.57 (2021-08-24)
2010
+
2011
+ ### GanttChart
2012
+
2013
+ #### Bug fixes
2014
+
2015
+ - `#339511` - Issue in maintaining resource selection has been resolved.
2016
+ - `#338206` - Cleared warnings thrown in Firefox browser.
2017
+
2018
+ ## 19.2.56 (2021-08-17)
2019
+
2020
+ ### GanttChart
2021
+
2022
+ #### Bug fixes
2023
+
2024
+ - `#338587` - Issue in assigning empty data to datasource has been resolved.
2025
+ - `#335677` - Issue in `expandAtLevel` and `collapseAtLevel` method with virtual scrolling has been resolved.
2026
+
2027
+ ## 19.2.55 (2021-08-11)
2028
+
2029
+ ### GanttChart
2030
+
2031
+ #### Bug fixes
2032
+
2033
+ - `#336211` - Issue with Virtual Scrolling in Firefox browse has been resolved.
2034
+
2035
+ ## 19.2.47 (2021-07-13)
2036
+
2037
+ ### GanttChart
2038
+
2039
+ #### Bug fixes
2040
+
2041
+ - `#331618` - Issue in updating `dataSource` property has been fixed.
2042
+ - `#333672` - Issue in calculating duration across DST has been fixed.
2043
+ - Issue in tooltip position has been fixed.
2044
+
2045
+ - Issue in tooltip position has been fixed.
2046
+
2047
+ ## 19.2.46 (2021-07-06)
2048
+
2049
+ ### GanttChart
2050
+
2051
+ #### Bug fixes
2052
+
2053
+ - `#331671` - Right Labels are rendered properly in exported PDF document.
2054
+ - `#332161` - Issue fixed when drag and drop performed after adding record through context menu.
2055
+
2056
+ ## 19.2.44 (2021-06-30)
2057
+
2058
+ ### GanttChart
2059
+
2060
+ #### New Features
2061
+
2062
+ - `#290125` - Provided support to add multiple tasks in Gantt.
2063
+
2064
+ ## 19.1.69 (2021-06-15)
2065
+
2066
+ ### GanttChart
2067
+
2068
+ #### Bug fixes
2069
+
2070
+ - `#330806` - When using `updateTaskId` method with predecessor field is not mapped in the `taskFields` has been fixed.
2071
+ - At certain zoom level, both halves of year are H1 has been resolved.
2072
+
2073
+ ## 19.1.66 (2021-06-01)
2074
+
2075
+ ### GanttChart
2076
+
2077
+ #### Bug fixes
2078
+
2079
+ - `#328182` - Mismatch between timeline and chart body content has been fixed.
2080
+ - `#165629` - Notes updated properly in Gantt chart when new task is added.
2081
+ - `#325331` - Immutable mode issue on data source refresh has been fixed.
2082
+ - `F163073` - Issue on `RemoteSaveAdaptor` has been fixed.
2083
+
2084
+ - `#325331` - Immutable mode issue on data source refresh has been fixed.
2085
+
2086
+ ## 19.1.64 (2021-05-19)
2087
+
2088
+ ### GanttChart
2089
+
2090
+ #### Bug fixes
2091
+
2092
+ - `#325587` - Issue while deleting resource on split task has been fixed.
2093
+ - Issue on dynamically changing the `allowTaskbarEditing` property has been fixed.
2094
+ - `#165210` - Issue while filtering using Excel type has been fixed.
2095
+ - `#327043` - Issue in rendering taskbar template has been fixed.
2096
+
2097
+ ## 19.1.63 (2021-05-13)
2098
+
2099
+ ### GanttChart
2100
+
2101
+ #### New Features
2102
+
2103
+ - `#264444, #296315` - Provided support for managing date with different time zones.
2104
+ - `#317529, #320843` - Provide support to cancel the merging of split tasks using client-side event.
2105
+ - `#307881`, `#309475`, `#325067` - Improved performance while scrolling, when predecessors are mapped.
2106
+
2107
+ - `#296315` - Provided support for managing date with different time zones.
2108
+
2109
+ #### Bug fixes
2110
+
2111
+ - `#326155` - Issue in splitting task using public method has been fixed.
2112
+ - `#325948` - Issue in adding new task with empty string has been fixed.
2113
+ - `#325585` - Issue while defining columns and dynamically changing the view type has been fixed.
2114
+
2115
+ ## 19.1.59 (2021-05-04)
2116
+
2117
+ ### GanttChart
2118
+
2119
+ #### Bug fixes
2120
+
2121
+ - `#325250` - Progress updated properly in manual scheduling.
2122
+ - `#324644` - Issue on adding records, when Gantt view is changed has been fixed.
2123
+ - `#325627` - Editing works fine after when holiday is set dynamically.
2124
+
2125
+ ## 19.1.58 (2021-04-27)
2126
+
2127
+ ### GanttChart
2128
+
2129
+ #### Bug fixes
2130
+
2131
+ - `#324141` - Issue in tooltip rendering position has been fixed.
2132
+ - `#320979` - Issue on changing data source and timeline settings on same time has been fixed.
2133
+ - `F163357` - Duplicating issue when a task is dropped below an unassigned resource in the resource view has been fixed.
2134
+ - `F164497` - Issue in editing end date of a task has been fixed.
2135
+
2136
+ ## 19.1.57 (2021-04-20)
2137
+
2138
+ ### GanttChart
2139
+
2140
+ #### Bug fixes
2141
+
2142
+ - `F164497` - Issue in editing end date of a task has been fixed.
2143
+
2144
+ ## 19.1.56 (2021-04-13)
2145
+
2146
+ ### GanttChart
2147
+
2148
+ #### Bug fixes
2149
+
2150
+ - `#320979` - Provided support to update data source dynamically with `collapseAllParentTasks` and `enableMultiTaskbar` enabled mode.
2151
+
2152
+ ## 19.1.55 (2021-04-06)
2153
+
2154
+ ### GanttChart
2155
+
2156
+ #### Bug fixes
2157
+
2158
+ - `#320882` - Issue on expand/collapse icon in `Resource view` has been fixed.
2159
+
2160
+ ## 19.1.54 (2021-03-30)
2161
+
2162
+ ### GanttChart
2163
+
2164
+ #### New Features
2165
+
2166
+ - `#298361` - Provided Observable data binding support in Gantt.
2167
+ - `#300136` - Provided support for tab like behaviour on cell navigation for cell edit mode.
2168
+
2169
+ ## 18.4.49 (2021-03-23)
2170
+
2171
+ ### GanttChart
2172
+
2173
+ #### New Features
2174
+
2175
+ - `#317550` - Provided support to define `valueAccessor` as string.
2176
+
2177
+ #### Bug fixes
2178
+
2179
+ - Console error when end date of segments is given as string has been fixed.
2180
+
2181
+ ## 18.4.47 (2021-03-09)
2182
+
2183
+ ### GanttChart
2184
+
2185
+ #### Bug fixes
2186
+
2187
+ - `316898` - Maintained additional fields in segments on zooming action.
2188
+
2189
+ ## 18.4.44 (2021-02-23)
2190
+
2191
+ ### GanttChart
2192
+
2193
+ #### Bug fixes
2194
+
2195
+ - `#315501` - Error on closing filter menu while focusing out has been resolved.
2196
+
2197
+ ## 18.4.43 (2021-02-16)
2198
+
2199
+ ### GanttChart
2200
+
2201
+ #### Bug fixes
2202
+
2203
+ - `#311841` - Duplicating records issue while indent action has been resolved.
2204
+ - `F160722` - Error on rendering editing tooltip has been resolved.
2205
+ - `F161444` - Error while hiding context menu items has been resolved.
2206
+
2207
+ - `#311841` - Duplicating records issue while indent action has been resolved.
2208
+ - `F160722` - Error on rendering editing tooltip has been resolved.
2209
+
2210
+ ## 18.4.41 (2021-02-02)
2211
+
2212
+ ### GanttChart
2213
+
2214
+ #### Bug fixes
2215
+
2216
+ - `#298884` - Error on reorder rows method has been fixed.
2217
+
2218
+ #### New Features
2219
+
2220
+ - `#306342` - Included target element in `actionBegin`, `taskbarEditing`, `contextMenuOpen` events.
2221
+
2222
+ ## 18.4.39 (2021-01-28)
2223
+
2224
+ ### GanttChart
2225
+
2226
+ #### New Features
2227
+
2228
+ - `#291192` - Provided Immutable Support to refresh specific rows while performing Gantt actions.
2229
+
2230
+ #### Bug fixes
2231
+
2232
+ - `F161492` - Console error on converting milestone to task has been fixed.
2233
+
2234
+ ## 18.4.35 (2021-01-19)
2235
+
2236
+ ### GanttChart
2237
+
2238
+ #### Bug fixes
2239
+
2240
+ - `F161492` - Console error on drag and drop action has been fixed.
2241
+ - `F161492` - Issue on indent action has been fixed.
2242
+
2243
+ ## 18.4.33 (2021-01-05)
2244
+
2245
+ ### GanttChart
2246
+
2247
+ #### Bug fixes
2248
+
2249
+ - `#298884` - Issue on reorder rows method in virtual scroll support has been fixed.
2250
+
2251
+ ## 18.4.32 (2020-12-29)
2252
+
2253
+ ### GanttChart
2254
+
2255
+ #### Bug fixes
2256
+
2257
+ - `F160722` - Issue on editing tooltip template has been fixed.
2258
+ - `#306971` - HTML encoder issue with notes column has been fixed.
2259
+ - `#306928` - Timeline width issue on zoom to fit action has been resolved.
2260
+
2261
+ - `F160722` - Issue on editing tooltip template has been fixed.
2262
+ - `#306971` - HTML encoder issue with notes column has been fixed.
2263
+
2264
+ ## 18.4.31 (2020-12-22)
2265
+
2266
+ ### GanttChart
2267
+
2268
+ #### Bug fixes
2269
+
2270
+ - `#306741` - Issue on closing filter menu while focusing out has been fixed.
2271
+ - `#306556` - Issue on duration field of add dialog has been fixed.
2272
+ - `#305822` - Issue on updating height on browser resizing has been fixed.
2273
+ - `#307295` - Issue on updating data source dynamically has been fixed.
2274
+ - `#305728` - Issue on loading large number of records in resource tab has been fixed.
2275
+
2276
+ - `#307295` - Issue on updating data source dynamically has been fixed.
2277
+
2278
+ ## 18.4.30 (2020-12-17)
2279
+
2280
+ ### GanttChart
2281
+
2282
+ #### New Features
2283
+
2284
+ - `#298884` - Provided `Virtual Scroll` support for Gantt.
2285
+
2286
+ - `#264980` - Provided `Virtual Scroll` support for Gantt.
2287
+
2288
+ #### Bug fixes
2289
+
2290
+ - `#306090` - Issue on pressing delete key when add/edit dialog is opened has been fixed.
2291
+ - `#306342` - Included additional field in `taskData.segments`.
2292
+ - `#305420` - Issue on triggering `rowSelected` event while opening context menu has been fixed.
2293
+
2294
+ - `#306090` - Issue on pressing delete key when add/edit dialog is opened has been fixed.
2295
+ - `#305420` - Issue on triggering `rowSelected` event while opening context menu has been fixed.
2296
+
2297
+ ## 18.3.52 (2020-12-01)
2298
+
2299
+ ### GanttChart
2300
+
2301
+ #### Bug fixes
2302
+
2303
+ - `F159625` - Console error on indent action after adding record has been fixed.
2304
+
2305
+ ## 18.3.51 (2020-11-24)
2306
+
2307
+ ### GanttChart
2308
+
2309
+ #### Bug fixes
2310
+
2311
+ - `301606` - Issue in template column when use it as `treeColumnIndex` has been fixed.
2312
+
2313
+ ## 18.3.50 (2020-11-17)
2314
+
2315
+ ### GanttChart
2316
+
2317
+ #### Bug fixes
2318
+
2319
+ - `293889` - Console error in split task when allowTaskbarEditing is disable has been fixed.
2320
+ - `300744` - Console error on clicking add/edit toolbar has been fixed.
2321
+ - `301653` - Issue on split task when date is given as string has been fixed.
2322
+
2323
+ ## 18.3.48 (2020-11-11)
2324
+
2325
+ ### GanttChart
2326
+
2327
+ #### Bug fixes
2328
+
2329
+ - `299695` - Issue in left label template has been fixed.
2330
+ - `F159354` - Issue in locale text of predecessor tooltip has been fixed.
2331
+ - `300962` - Included timeline property in actionComplete event after zooming action.
2332
+ - `300804` - Issue in displaying resources when data source is empty has been fixed.
2333
+
2334
+ ## 18.3.47 (2020-11-05)
2335
+
2336
+ ### GanttChart
2337
+
2338
+ #### New Features
2339
+
2340
+ - `#292246` - Provided support to split the taskbar into multiple segments through context menu and dialog edit.
2341
+ - `#282972, #293345` - Provided support to render predecessor and rows properly in different zooming levels and display scaling size.
2342
+
2343
+ #### Bug fixes
2344
+
2345
+ - `#295381` - Issue on exporting Gantt with partial data has been fixed.
2346
+ - `#299370` - Issue on restricting dragging action when read only property set to true.
2347
+ - `F159153` - Issue in localized text of dependency tab default value has been fixed.
2348
+ - `F158903` - Issue while sorting after add task action has been fixed.
2349
+
2350
+ - `#295381` - Issue on exporting Gantt with partial data has been fixed.
2351
+ - `#299370` - Issue on restricting dragging action when read only property set to true.
2352
+ - `F159153` - Issue in localized text of dependency tab default value has been fixed.
2353
+
2354
+ ## 18.3.42 (2020-10-20)
2355
+
2356
+ ### GanttChart
2357
+
2358
+ #### Bug fixes
2359
+
2360
+ - `#296920` - Issue on rendering Gantt with resources has been fixed.
2361
+ - `F158128` - Issue on updating DB on `indent` and `outdent` action has been fixed.
2362
+ - `#291962` - Dates are not filtered with given date format issue has been fixed.
2363
+ - `#295998` - Events are not triggered properly while perform zoom to fit actions has been fixed.
2364
+
2365
+ - `#296920` - Issue on rendering Gantt with resources has been fixed.
2366
+
2367
+ ## 18.3.35 (2020-10-01)
2368
+
2369
+ ### GanttChart
2370
+
2371
+ #### Bug fixes
2372
+
2373
+ - `#293528` - Issue when work value is given as decimal values has been fixed.
2374
+
2375
+ ## 18.2.59 (2020-09-21)
2376
+
2377
+ ### GanttChart
2378
+
2379
+ #### New Features
2380
+
2381
+ - `#292825` - Provided support to improvement of trigger actions on key press.
2382
+
2383
+ - `#292825` - Provided support to trigger actions on key press.
2384
+
2385
+ #### Bug fixes
2386
+
2387
+ - `#293539` - Issue while dynamically updating `allowRowDragAndDrop` gets fixed.
2388
+ - `#292470` - Issue on edit template in dialog has been fixed.
2389
+ - `#293749` - Edit `params` not worked properly for progress column has been fixed.
2390
+
2391
+ - `#293539` - Issue while dynamically updating `allowRowDragAndDrop` gets fixed.
2392
+
2393
+ ## 18.2.57 (2020-09-08)
2394
+
2395
+ ### GanttChart
2396
+
2397
+ #### Bug fixes
2398
+
2399
+ - `#290457` - Issue on customizing the background colour of taskbar in Resource view has been fixed.
2400
+ - `F157498` - Console error on indenting record after sorting has been fixed.
2401
+
2402
+ ## 18.2.56 (2020-09-01)
2403
+
2404
+ ### GanttChart
2405
+
2406
+ #### Bug fixes
2407
+
2408
+ - `#291158` - Console error on destroy Gantt when allowKeyboard is false has been fixed.
2409
+ - `#279528` - Dialog dependency drop-down list has existing dependency data has been fixed.
2410
+
2411
+ ## 18.2.55 (2020-08-25)
2412
+
2413
+ ### GanttChart
2414
+
2415
+ #### Bug fixes
2416
+
2417
+ - `#288438` - Tooltip rendering issue has been fixed.
2418
+ - The issue of the bottom tire format in Chinese culture has been fixed.
2419
+
2420
+ ## 18.2.48 (2020-08-04)
2421
+
2422
+ ### GanttChart
2423
+
2424
+ #### New Features
2425
+
2426
+ - `#287282` - Provided support to change viewType of Gantt dynamically.
2427
+
2428
+ #### Bug fixes
2429
+
2430
+ - `#285626` - Console error while rendering multiple Gantt has been fixed.
2431
+ - `#285749` - Issue on parent progress calculation while delete child record has been fixed.
2432
+
2433
+ - `#285626` - Console error while rendering multiple Gantt has been fixed.
2434
+
2435
+ ## 18.2.47 (2020-07-28)
2436
+
2437
+ ### GanttChart
2438
+
2439
+ #### Bug fixes
2440
+
2441
+ - `#284995` - Issue in predecessor lines of exported pdf document has been fixed.
2442
+ - `#284995` - Content overflow issue in exported pdf document has been fixed.
2443
+ - `#284052` - Editing issue in Gantt Chart when using DB has been fixed.
2444
+
2445
+ #### New Features
2446
+
2447
+ - `#280004` - Given support to render edit template fields in Gantt edit dialog.
2448
+
2449
+ ## 18.2.46 (2020-07-21)
2450
+
2451
+ ### GanttChart
2452
+
2453
+ #### Bug fixes
2454
+
2455
+ - `#276968` - Column misalignment issue after editing has been fixed.
2456
+ - `F155689` - Issue on expanding records while mapping expand status of record has been fixed.
2457
+
2458
+ ## 18.2.45 (2020-07-14)
2459
+
2460
+ ### GanttChart
2461
+
2462
+ #### Bug fixes
2463
+
2464
+ - `#278235` - Parent Id is not updated properly on row drag and drop action issue gets resolved.
2465
+ - `F155766` - PDF export document Gantt timeline issue after zooming has been resolved.
2466
+ - `#279872` - Issue while updating add and edit dialog fields in action begin events are resolved.
2467
+ - `#275651` - Issue while dynamically updating `worWeek` gets fixed.
2468
+ - `#277029` - Updating custom column in action begin event issue gets resolved.
2469
+
2470
+ ## 18.2.44 (2020-07-07)
2471
+
2472
+ ### GanttChart
2473
+
2474
+ #### New Features
2475
+
2476
+ - `#245866, #279740, #248032` - Provided support to `render multiple resource tasks` in a row on collapsed state in resource view Gantt.
2477
+ - `#252413` - Provided support to display the `over allocation` indicators for a resources in resource view Gantt.
2478
+ - `#262121` - Provided support for `dependency` between two tasks in resource view Gantt.
2479
+ - `#269776` - Provided support for rendering Gantt as `read only`.
2480
+
2481
+ ## 18.1.59 (2020-06-23)
2482
+
2483
+ ### GanttChart
2484
+
2485
+ #### Bug fixes
2486
+
2487
+ - `#281103`- Taskbar not rendered properly while cancel the new child record by context menu action has been fixed.
2488
+ - `#281247`- Parent id is not updated on add a child record by context menu has been fixed.
2489
+ - `#279689` - Issue in displaying values with boolean edit type was fixed.
2490
+ - `#281102`, `#281154` - Events not triggered with correct request type in indent action has been fixed.
2491
+ - `#281251` - Not continued to tab onto the next non-Gantt Chart element issue has been fixed.
2492
+ - `#280070`- Issue on pdf export date format mismatch in Gantt has been fixed.
2493
+ - `#279234` - Console error while selecting the record issue gets resolved.
2494
+ - `#279689`- Issue in updating start date with date time picker when custom columns are rendered has been fixed.
2495
+ - `#280802` - Issue on maintaining parent Id value while adding records with empty data source gets fixed.
2496
+
2497
+ - `#280070`- Issue on pdf export date format mismatch in Gantt has been fixed.
2498
+ - `#279234` - Console error while selecting the record issue gets resolved.
2499
+
2500
+ ## 18.1.57 (2020-06-16)
2501
+
2502
+ ### GanttChart
2503
+
2504
+ #### New Features
2505
+
2506
+ - `#278724` - Provided support for hiding ID column in dependency tab.
2507
+
2508
+ ## 18.1.55 (2020-06-02)
2509
+
2510
+ ### GanttChart
2511
+
2512
+ #### Bug fixes
2513
+
2514
+ - `#278176` - Zoom in or zoom out toolbar button disabled after zoom to fit action was fixed.
2515
+ - `#278238` - Action begin event not triggered on finish to finish predecessor was fixed.
2516
+
2517
+ #### New Features
2518
+
2519
+ - `#269776` - Provided support for `expandAtLevel` method and changed `expandByIndex` method parameter as array type.
2520
+
2521
+ ## 18.1.54 (2020-05-26)
2522
+
2523
+ ### GanttChart
2524
+
2525
+ #### Bug fixes
2526
+
2527
+ - `#277029` - Update value not display on edit action issue has been fixed.
2528
+ - `#276942` - Issue while passing additional parameter to the server side on CRUD operation has been fixed.
2529
+
2530
+ ## 18.1.53 (2020-05-19)
2531
+
2532
+ ### GanttChart
2533
+
2534
+ #### Bug fixes
2535
+
2536
+ - `#39566` - Issue when remove event markers dynamically has been resolved.
2537
+ - `F154261`,`#276047` - Issue while adding new record with empty data on load time gets resolved.
2538
+ - `#274206` - Issue in updating resource column gets resolved.
2539
+
2540
+ - `F154261`,`#276047` - Issue while adding new record with empty data on load time gets resolved.
2541
+
2542
+ #### New Features
2543
+
2544
+ - `#273107` - Provided support to render task type on load time.
2545
+
2546
+ #### Breaking Changes
2547
+
2548
+ - Now the resource value in the `taskData` is always array of objects type and it is irrespective of resource value type in data source.
2549
+
2550
+ ## 18.1.52 (2020-05-13)
2551
+
2552
+ ### GanttChart
2553
+
2554
+ #### Bug fixes
2555
+
2556
+ - `#268349` - Issue on maintaining duration data type gets resolved.
2557
+ - Column filter menu displayed in wrong place has been fixed.
2558
+
2559
+ - `#268349` - Issue on maintaining duration data type gets resolved.
2560
+
2561
+ #### New Features
2562
+
2563
+ - Provided drag and drop support for resource view Gantt.
2564
+ - `#271392` - Provided support to update task id dynamically.
2565
+ - `#269776` - Provided support to indent a selected record.
2566
+
2567
+ ## 18.1.48 (2020-05-05)
2568
+
2569
+ ### GanttChart
2570
+
2571
+ #### Bug fixes
2572
+
2573
+ - `#273422` - Date mismatch for parent and child record gets resolved.
2574
+
2575
+ ## 18.1.46 (2020-04-28)
2576
+
2577
+ ### GanttChart
2578
+
2579
+ #### Bug fixes
2580
+
2581
+ - `#273440` - Issue on updating end date value using cell edit gets resolved.
2582
+ - `#273426` - Issue on validating parent start date on taskbar edit action gets resolved.
2583
+ - `#274066` - Console error on dragging parent milestone task gets resolved.
2584
+
2585
+ ## 18.1.45 (2020-04-21)
2586
+
2587
+ ### GanttChart
2588
+
2589
+ #### Bug fixes
2590
+
2591
+ - `#268281` - Issue on adding dependency using dialog gets resolved.
2592
+
2593
+ ## 18.1.44 (2020-04-14)
2594
+
2595
+ ### GanttChart
2596
+
2597
+ #### Bug fixes
2598
+
2599
+ - `#270801` - Issue on end date calculations gets resolved.
2600
+ - `#270563` - Console error throws while taskbar resizing with use of taskbar template has been fixed.
2601
+ - Issue in mapping custom class of task from data source has been fixed.
2602
+
2603
+ - `#270563` - Console error throws while taskbar resizing with use of taskbar template has been fixed.
2604
+
2605
+ ## 18.1.43 (2020-04-07)
2606
+
2607
+ ### GanttChart
2608
+
2609
+ #### New Features
2610
+
2611
+ - `#269693, #269694` - Provided accessibility support for column header and filter.
2612
+
2613
+ #### Bug fixes
2614
+
2615
+ - `#270384` - Prevented event markers, indicators, holidays, baseline consideration for timeline while doing zoom to fit action.
2616
+
2617
+ ## 18.1.42 (2020-04-01)
2618
+
2619
+ ### GanttChart
2620
+
2621
+ #### Bug fixes
2622
+
2623
+ - `#264099` - Console error on tab key press has been fixed.
2624
+ - `#269692`,`#269690` - Issue on focussing to the next element has been fixed.
2625
+ - `#269772` - Prevented taskbar editing tooltip while tooltip is disabled.
2626
+
2627
+ ## 18.1.36-beta (2020-03-19)
2628
+
2629
+ ### GanttChart
2630
+
2631
+ #### New Features
2632
+
2633
+ - `#238591`,`#247663`,`#253913`,`#263052`,`F147148`,`F147548`,`F149280` - Provided support for PDF export which exports Gantt data to PDF format.
2634
+ - `#258677`,`#264570`,`F149280` - Provided support for manual task scheduling which is used to scheduling the task manually without any dependency.
2635
+ - `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.
2636
+ - `#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.
2637
+
2638
+ #### Bug fixes
2639
+
2640
+ - `#263236` - Issue on multi-level dragged parent dropped into last index has been fixed.
2641
+ - `#264099` - Issue in tab key action in edited state is fixed.
2642
+
2643
+ - `#264099` - Issue in tab key action in edited state is fixed.
2644
+
2645
+ ## 17.4.46 (2020-01-30)
2646
+
2647
+ ### GanttChart
2648
+
2649
+ #### New Features
2650
+
2651
+ - `F148795` - Provided custom editor support in dialog edit.
2652
+ - `F149069` - Provided support to render parent as milestone.
2653
+ - `#257320` - Provided support for 'zoom to fit' based on visible tasks alone.
2654
+
2655
+ #### Bug fixes
2656
+
2657
+ - `F150408` - Baseline tooltip not rendered for milestone tasks has been fixed.
2658
+ - `#260944` - Issue in preventing taskbar editing has been fixed.
2659
+
2660
+ - `#260944` - Issue in preventing taskbar editing has been fixed.
2661
+
2662
+ ## 17.4.44 (2021-01-21)
2663
+
2664
+ ### GanttChart
2665
+
2666
+ #### Bug fixes
2667
+
2668
+ - `#260331` - Typescript declaration issue fixed.
2669
+
2670
+ ## 17.4.41 (2020-01-07)
2671
+
2672
+ ### GanttChart
2673
+
2674
+ #### New Features
2675
+
2676
+ - `#253076` - Provided support to focus Gantt on tab key press.
2677
+
2678
+ ## 17.4.40 (2019-12-24)
2679
+
2680
+ ### GanttChart
2681
+
2682
+ #### Bug fixes
2683
+
2684
+ - `F149551` - Handled empty value while editing the numeric edit type field.
2685
+
2686
+ ## 17.4.39 (2019-12-17)
2687
+
2688
+ ### GanttChart
2689
+
2690
+ #### Bug fixes
2691
+
2692
+ - `F147793` - Context menu not closing issue while scrolling on the Gantt element has been fixed.
2693
+
2694
+ #### Breaking Changes
2695
+
2696
+ - 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.
2697
+
2698
+ #### New Features
2699
+
2700
+ - `#253909` - Provided support for converting a task to milestone by method.
2701
+ - `F148875` - Provided support for disabling column editing on dialog popup.
2702
+ - `F146587` - Provided support for taskbarClick event in Gantt.
2703
+ - `F146585` - Provided support for mouseHover event in Gantt.
2704
+
2705
+ - `#253909` - Provided support for converting a task to milestone by method.
2706
+
2707
+ ## 17.3.30 (2019-12-03)
2708
+
2709
+ ### GanttChart
2710
+
2711
+ #### Bug fixes
2712
+
2713
+ - `#253076` - Accessibility issues in Gantt has been fixed.
2714
+
2715
+ ## 17.3.29 (2019-11-26)
2716
+
2717
+ ### GanttChart
2718
+
2719
+ #### Bug fixes
2720
+
2721
+ - `F149069` - Parent taskbar alignment issue while rendering with single milestone child record has been fixed.
2722
+ - `F149070` - Key navigation disable issue on Tree Grid section has been fixed.
2723
+ - `#255266` - ParentID field not available in taskData field has been fixed.
2724
+
2725
+ ## 17.3.28 (2019-11-19)
2726
+
2727
+ ### GanttChart
2728
+
2729
+ #### Bug fixes
2730
+
2731
+ - `#253912` - Parent taskbar disappearance issue while deleting all its child records has been fixed.
2732
+
2733
+ ## 17.3.19 (2019-10-22)
2734
+
2735
+ ### GanttChart
2736
+
2737
+ #### Bug fixes
2738
+
2739
+ - `249581` - Browser hangs issue while change schedule mode to year has been fixed.
2740
+ - `252195` - Issue on forEach method iteration in IE11 has been fixed.
2741
+
2742
+ ## 17.3.14 (2019-10-03)
2743
+
2744
+ ### GanttChart
2745
+
2746
+ #### Bug fixes
2747
+
2748
+ - `F147755` - Chart part disappearing issue when splitter position value greater than control width has been fixed.
2749
+
2750
+ ## 17.3.9-beta (2019-09-20)
2751
+
2752
+ ### GanttChart
2753
+
2754
+ #### Bug fixes
2755
+
2756
+ - `#245866` - Alignment issue with `height` property value as `auto` has been fixed.
2757
+ - `F145725` - Issue with cell editing on newly added record has been fixed.
2758
+ - `#246761` - Issue while providing date field value with empty string value and invalid date values has been fixed.
2759
+ - `#247124` - Issue while loading Gantt SB samples in Mobile devices has been fixed.
2760
+ - `F147329` - Issue in progress calculation with unscheduled tasks has been fixed.
2761
+ - `F147380` - Issue with prevent edit dialog has been fixed.
2762
+
2763
+ - `#245866` - Alignment issue with `height` property value as `auto` has been fixed.
2764
+ - `F145725` - Issue with cell editing on newly added record has been fixed.
2765
+ - `#246761` - Issue while providing date field value with empty string value and invalid date values has been fixed.
2766
+ - `#247124` - Issue while loading Gantt SB samples in Mobile devices has been fixed.
2767
+
2768
+ #### New Features
2769
+
2770
+ - `#233407` - Provided support to perform Excel and CSV exporting in Gantt.
2771
+
2772
+ ## 17.2.46 (2019-08-22)
2773
+
2774
+ ### GanttChart
2775
+
2776
+ #### Bug fixes
2777
+
2778
+ - `F145733` - Alignment issue with header and rows on splitter resizing has been fixed.
2779
+ - `F146641` - Issue with indicators tooltip support has been fixed.
2780
+
2781
+ - `F146641` - Issue with indicators tooltip support has been fixed.
2782
+
2783
+ ## 17.2.41 (2019-08-14)
2784
+
2785
+ ### GanttChart
2786
+
2787
+ #### Bug fixes
2788
+
2789
+ - `#243770` - Issue in date picker with custom format has been fixed.
2790
+ - `#243238` - Included current edited data in `actionComplete` event arguments.
2791
+
2792
+ - `#243770` - Issue in date picker with custom format has been fixed.
2793
+
2794
+ ## 17.2.40 (2019-08-06)
2795
+
2796
+ ### GanttChart
2797
+
2798
+ #### Bug fixes
2799
+
2800
+ - #F145936 - Custom column values not updated in data source on Editing has been fixed.
2801
+ - Lexical declaration issues in es2015 has been fixed.
2802
+
2803
+ - Lexical declaration issues in es2015 has been fixed.
2804
+
2805
+ ## 17.2.36 (2019-07-24)
2806
+
2807
+ ### GanttChart
2808
+
2809
+ #### Bug fixes
2810
+
2811
+ - #241781 - Gantt task-data property missing in template data issue has been fixed.
2812
+
2813
+ ## 17.2.28-beta (2019-06-27)
2814
+
2815
+ ### GanttChart
2816
+
2817
+ #### Bug fixes
2818
+
2819
+ - #238228 - Issue while rendering tooltip with smaller duration has been fixed.
2820
+
2821
+ #### New Features
2822
+
2823
+ - Now Gantt supports context menu to perform various action.
2824
+ - Provided support to perform timeline zoom in, zoom out and zoom to fit actions in Gantt.
2825
+ - Provided key interaction support in Gantt.
2826
+
2827
+ ## 17.1.49 (2019-05-29)
2828
+
2829
+ ### GanttChart
2830
+
2831
+ #### Bug fixes
2832
+
2833
+ - #F144145 - Task Id duplication issue while adding new record has been fixed.
2834
+
2835
+ ## 17.1.47 (2019-05-14)
2836
+
2837
+ ### GanttChart
2838
+
2839
+ #### Bug fixes
2840
+
2841
+ - #233041 - Alignment issue with timeline and vertical lines has been fixed.
2842
+
2843
+ #### New Features
2844
+
2845
+ - #F143360 - Provided support to refresh the `dataSource` dynamically.
2846
+
2847
+ ## 17.1.43 (2019-04-30)
2848
+
2849
+ ### GanttChart
2850
+
2851
+ #### Bug fixes
2852
+
2853
+ - Bug fixes included.
2854
+
2855
+ ## 17.1.40 (2019-04-09)
2856
+
2857
+ ### GanttChart
2858
+
2859
+ #### Bug fixes
2860
+
2861
+ - Internal Bug fixes included.
2862
+
2863
+ ## 17.1.32-beta (2019-03-13)
2864
+
2865
+ ### GanttChart
2866
+
2867
+ - **Data sources** – Bind hierarchical or self-referential data to Gantt chart with an array of JavaScript objects or DataManager.
2868
+ - **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.
2869
+ - **Customizable Taskbars** – Display various tasks in a project using child taskbar, summary taskbar and milestone UI, that can also be customized with templates.
2870
+ - **Unscheduled tasks** – Support for displaying tasks with undefined start date, end date or duration in a project.
2871
+ - **Baselines** – Display the deviations between planned dates and actual dates of a task in a project using baselines.
2872
+ - **CRUD actions** – Provides the options to dynamically insert, delete and update tasks using columns, dialog and taskbar editing options.
2873
+ - **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.
2874
+ - **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.
2875
+ - **Filtering** – Offers filtering the Gantt content using column menu filtering along with toolbar search box.
2876
+ - **Customizable columns** – Customize the columns and add custom columns to Gantt chart at initialization through column property.
2877
+ - **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.
2878
+ - **Localization** - Provides inherent support to localize the UI.## 25.2.4 (2024-05-14)
2879
+
2880
+ ### GanttChart
2881
+
2882
+ #### Bug fixes
2883
+
2884
+ - `#F187977` - The script error caused by multiple resources assigned to a single task issue has been resolved.
2885
+ - `#I578781` - Delay in update of multiple dependency task issue has been fixed.
2886
+
2887
+ ## 21.1.36 (2023-06-28)
2888
+
2889
+ ### GanttChart
2890
+
2891
+ #### Bug fixes
2892
+
2893
+ - `#I469289` - Fit to project is not working properly issue has been fixed.
2894
+ - `#I474676` - Fit to project display wrong timeline issue has been fixed.
2895
+