@syncfusion/ej2-gantt 22.2.11 → 23.1.36

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 (127) hide show
  1. package/CHANGELOG.md +195 -163
  2. package/dist/ej2-gantt.min.js +2 -2
  3. package/dist/ej2-gantt.umd.min.js +2 -2
  4. package/dist/ej2-gantt.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-gantt.es2015.js +1003 -292
  6. package/dist/es6/ej2-gantt.es2015.js.map +1 -1
  7. package/dist/es6/ej2-gantt.es5.js +1040 -313
  8. package/dist/es6/ej2-gantt.es5.js.map +1 -1
  9. package/dist/global/ej2-gantt.min.js +2 -2
  10. package/dist/global/ej2-gantt.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +21 -21
  13. package/src/gantt/actions/cell-edit.js +4 -1
  14. package/src/gantt/actions/context-menu.js +4 -1
  15. package/src/gantt/actions/critical-path.d.ts +2 -0
  16. package/src/gantt/actions/critical-path.js +81 -59
  17. package/src/gantt/actions/dependency.d.ts +1 -0
  18. package/src/gantt/actions/dependency.js +43 -25
  19. package/src/gantt/actions/dialog-edit.js +27 -7
  20. package/src/gantt/actions/edit.d.ts +12 -1
  21. package/src/gantt/actions/edit.js +91 -10
  22. package/src/gantt/actions/filter.js +3 -0
  23. package/src/gantt/actions/pdf-export.d.ts +4 -1
  24. package/src/gantt/actions/pdf-export.js +36 -3
  25. package/src/gantt/actions/rowdragdrop.js +10 -2
  26. package/src/gantt/actions/selection.js +22 -5
  27. package/src/gantt/actions/taskbar-edit.js +51 -36
  28. package/src/gantt/actions/toolbar.js +8 -0
  29. package/src/gantt/base/date-processor.js +3 -3
  30. package/src/gantt/base/gantt-chart.d.ts +1 -0
  31. package/src/gantt/base/gantt-chart.js +79 -6
  32. package/src/gantt/base/gantt-model.d.ts +7 -0
  33. package/src/gantt/base/gantt.d.ts +6 -0
  34. package/src/gantt/base/gantt.js +83 -13
  35. package/src/gantt/base/interface.d.ts +14 -0
  36. package/src/gantt/base/task-processor.d.ts +4 -4
  37. package/src/gantt/base/task-processor.js +86 -36
  38. package/src/gantt/base/tree-grid.js +19 -10
  39. package/src/gantt/export/export-helper.d.ts +5 -1
  40. package/src/gantt/export/export-helper.js +152 -4
  41. package/src/gantt/export/pdf-base/pdf-grid-table.js +2 -2
  42. package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +8 -0
  43. package/src/gantt/export/pdf-base/treegrid-layouter.js +6 -1
  44. package/src/gantt/export/pdf-connector-line.js +3 -1
  45. package/src/gantt/export/pdf-gantt.js +6 -0
  46. package/src/gantt/export/pdf-taskbar.d.ts +13 -0
  47. package/src/gantt/export/pdf-taskbar.js +39 -5
  48. package/src/gantt/export/pdf-timeline.js +17 -8
  49. package/src/gantt/export/pdf-treegrid.js +3 -0
  50. package/src/gantt/models/task-fields-model.d.ts +7 -0
  51. package/src/gantt/models/task-fields.d.ts +6 -0
  52. package/src/gantt/models/task-fields.js +3 -0
  53. package/src/gantt/renderer/chart-rows.d.ts +1 -1
  54. package/src/gantt/renderer/chart-rows.js +39 -20
  55. package/src/gantt/renderer/connector-line.js +49 -9
  56. package/src/gantt/renderer/edit-tooltip.js +11 -7
  57. package/src/gantt/renderer/timeline.js +19 -9
  58. package/src/gantt/renderer/tooltip.js +37 -33
  59. package/styles/bootstrap-dark.css +44 -100
  60. package/styles/bootstrap.css +44 -100
  61. package/styles/bootstrap4.css +44 -100
  62. package/styles/bootstrap5-dark.css +44 -100
  63. package/styles/bootstrap5.css +44 -100
  64. package/styles/fabric-dark.css +44 -100
  65. package/styles/fabric.css +44 -100
  66. package/styles/fluent-dark.css +44 -100
  67. package/styles/fluent.css +44 -100
  68. package/styles/gantt/_layout.scss +44 -31
  69. package/styles/gantt/_theme.scss +104 -98
  70. package/styles/gantt/bootstrap-dark.css +44 -100
  71. package/styles/gantt/bootstrap-dark.scss +1 -1
  72. package/styles/gantt/bootstrap.css +44 -100
  73. package/styles/gantt/bootstrap.scss +1 -1
  74. package/styles/gantt/bootstrap4.css +44 -100
  75. package/styles/gantt/bootstrap4.scss +1 -1
  76. package/styles/gantt/bootstrap5-dark.css +44 -100
  77. package/styles/gantt/bootstrap5-dark.scss +1 -1
  78. package/styles/gantt/bootstrap5.css +44 -100
  79. package/styles/gantt/bootstrap5.scss +1 -1
  80. package/styles/gantt/fabric-dark.css +44 -100
  81. package/styles/gantt/fabric-dark.scss +1 -1
  82. package/styles/gantt/fabric.css +44 -100
  83. package/styles/gantt/fabric.scss +1 -1
  84. package/styles/gantt/fluent-dark.css +44 -100
  85. package/styles/gantt/fluent-dark.scss +1 -1
  86. package/styles/gantt/fluent.css +44 -100
  87. package/styles/gantt/fluent.scss +1 -1
  88. package/styles/gantt/highcontrast-light.css +40 -100
  89. package/styles/gantt/highcontrast-light.scss +1 -1
  90. package/styles/gantt/highcontrast.css +44 -100
  91. package/styles/gantt/highcontrast.scss +1 -1
  92. package/styles/gantt/icons/_bootstrap-dark.scss +4 -0
  93. package/styles/gantt/icons/_bootstrap.scss +4 -0
  94. package/styles/gantt/icons/_bootstrap4.scss +4 -0
  95. package/styles/gantt/icons/_bootstrap5.scss +4 -0
  96. package/styles/gantt/icons/_fabric-dark.scss +4 -0
  97. package/styles/gantt/icons/_fabric.scss +4 -0
  98. package/styles/gantt/icons/_fluent.scss +4 -0
  99. package/styles/gantt/icons/_fusionnew.scss +4 -0
  100. package/styles/gantt/icons/_highcontrast.scss +4 -0
  101. package/styles/gantt/icons/_material-dark.scss +4 -0
  102. package/styles/gantt/icons/_material.scss +4 -0
  103. package/styles/gantt/icons/_material3.scss +4 -0
  104. package/styles/gantt/icons/_tailwind-dark.scss +4 -0
  105. package/styles/gantt/icons/_tailwind.scss +4 -0
  106. package/styles/gantt/material-dark.css +44 -101
  107. package/styles/gantt/material-dark.scss +1 -1
  108. package/styles/gantt/material.css +44 -101
  109. package/styles/gantt/material.scss +1 -1
  110. package/styles/gantt/material3-dark.css +45 -102
  111. package/styles/gantt/material3-dark.scss +1 -1
  112. package/styles/gantt/material3.css +45 -102
  113. package/styles/gantt/material3.scss +1 -1
  114. package/styles/gantt/tailwind-dark.css +44 -101
  115. package/styles/gantt/tailwind-dark.scss +1 -1
  116. package/styles/gantt/tailwind.css +44 -101
  117. package/styles/gantt/tailwind.scss +1 -1
  118. package/styles/highcontrast-light.css +40 -100
  119. package/styles/highcontrast.css +44 -100
  120. package/styles/material-dark.css +44 -101
  121. package/styles/material.css +44 -101
  122. package/styles/material3-dark.css +45 -102
  123. package/styles/material3-dark.scss +1 -1
  124. package/styles/material3.css +45 -102
  125. package/styles/material3.scss +1 -1
  126. package/styles/tailwind-dark.css +44 -101
  127. package/styles/tailwind.css +44 -101
package/CHANGELOG.md CHANGED
@@ -2,16 +2,48 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### Gantt Chart
5
+ ### GanttChart
6
+
7
+ #### Features
8
+
9
+ - `#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).
10
+ - `#I396039` - Provided baseline support for PDF export in Gantt Chart.
11
+ - 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).
12
+ - Provided touch interaction support for taskbar resizing, dragging, predecessor connectivity in Gantt chart.
13
+
14
+ #### Bug Fixes
15
+
16
+ - `#I492654` - When empty data source pdf export exception thrown issue has been fixed.
17
+ - `#I479578` - Milestone parent is not appearing issue has been fixed.
18
+
19
+ ## 22.2.12 (2023-09-05)
20
+
21
+ ### GanttChart
22
+
23
+ #### Bug Fixes
24
+
25
+ - `#I488557` - The project dates are not modified after changing the timeline.
26
+ - `#I472635` - When pressing the insert key `newRowPosition` bottom row is not highlighted.
27
+ - `#I489655` - Milestone is not converting back to taskbar when we have milestone property has been fixed.
28
+ - `#I492520` - Critical path styling not getting cleared correctly issue has been fixed.
29
+ - `#I492654` - When empty data source pdf export exception thrown issue has been fixed.
30
+ - `#I485527` - Filter menu opening issue in column menu has been fixed.
31
+ - `#I494859` - Gantt shrinks when we update the datasource issue has been fixed.
32
+
33
+ ## 22.2.11 (2023-08-29)
34
+
35
+ ### GanttChart
6
36
 
7
37
  #### Bug Fixes
8
38
 
9
39
  - `#I485527` - Filter menu opening issue in column menu has been fixed.
10
40
  - `#I491313` - Multiple records were selected after using the context menu, adding the milestone position wrong issue has been fixed.
41
+ - `#F183168` - Gantt Chart not refreshing after adding new item is fixed.
42
+ - `#I491178` - Data modified in the server is not reflected in the rendered Gantt Chart is fixed.
11
43
 
12
44
  ## 22.2.10 (2023-08-22)
13
45
 
14
- ### Gantt Chart
46
+ ### GanttChart
15
47
 
16
48
  #### Bug Fixes
17
49
 
@@ -21,7 +53,7 @@
21
53
 
22
54
  ## 22.2.9 (2023-08-15)
23
55
 
24
- ### Gantt Chart
56
+ ### GanttChart
25
57
 
26
58
  #### Bug Fixes
27
59
 
@@ -34,7 +66,7 @@
34
66
 
35
67
  ## 22.2.8 (2023-08-08)
36
68
 
37
- ### Gantt Chart
69
+ ### GanttChart
38
70
 
39
71
  #### Bug Fixes
40
72
 
@@ -45,7 +77,7 @@
45
77
 
46
78
  ## 22.2.7 (2023-08-02)
47
79
 
48
- ### Gantt Chart
80
+ ### GanttChart
49
81
 
50
82
  #### Bug Fixes
51
83
 
@@ -63,7 +95,7 @@
63
95
 
64
96
  ## 22.2.5 (2023-07-27)
65
97
 
66
- ### Gantt Chart
98
+ ### GanttChart
67
99
 
68
100
  #### Bug Fixes
69
101
 
@@ -75,7 +107,7 @@
75
107
 
76
108
  ## 22.1.39 (2023-07-18)
77
109
 
78
- ### Gantt Chart
110
+ ### GanttChart
79
111
 
80
112
  #### Bug Fixes
81
113
 
@@ -83,7 +115,7 @@
83
115
 
84
116
  ## 22.1.38 (2023-07-11)
85
117
 
86
- ### Gantt Chart
118
+ ### GanttChart
87
119
 
88
120
  #### Bug Fixes
89
121
 
@@ -97,7 +129,7 @@
97
129
 
98
130
  ## 22.1.37 (2023-07-04)
99
131
 
100
- ### Gantt Chart
132
+ ### GanttChart
101
133
 
102
134
  #### Bug Fixes
103
135
 
@@ -108,7 +140,7 @@
108
140
 
109
141
  ## 22.1.36 (2023-06-28)
110
142
 
111
- ### Gantt Chart
143
+ ### GanttChart
112
144
 
113
145
  #### Bug Fixes
114
146
 
@@ -123,7 +155,7 @@
123
155
 
124
156
  ## 22.1.34 (2023-06-21)
125
157
 
126
- ### Gantt Chart
158
+ ### GanttChart
127
159
 
128
160
  #### Features
129
161
 
@@ -135,7 +167,7 @@
135
167
 
136
168
  ## 21.2.10 (2023-06-13)
137
169
 
138
- ### Gantt Chart
170
+ ### GanttChart
139
171
 
140
172
  #### Bug Fixes
141
173
 
@@ -146,7 +178,7 @@
146
178
 
147
179
  ## 21.2.9 (2023-06-06)
148
180
 
149
- ### Gantt Chart
181
+ ### GanttChart
150
182
 
151
183
  #### Bug Fixes
152
184
 
@@ -166,7 +198,7 @@
166
198
 
167
199
  ## 21.2.8 (2023-05-30)
168
200
 
169
- ### Gantt Chart
201
+ ### GanttChart
170
202
 
171
203
  #### Bug Fixes
172
204
 
@@ -181,7 +213,7 @@
181
213
 
182
214
  ## 21.2.6 (2023-05-23)
183
215
 
184
- ### Gantt Chart
216
+ ### GanttChart
185
217
 
186
218
  #### Bug Fixes
187
219
 
@@ -191,7 +223,7 @@
191
223
 
192
224
  ## 21.2.5 (2023-05-16)
193
225
 
194
- ### Gantt Chart
226
+ ### GanttChart
195
227
 
196
228
  #### Bug Fixes
197
229
 
@@ -204,7 +236,7 @@
204
236
 
205
237
  ## 21.2.4 (2023-05-09)
206
238
 
207
- ### Gantt Chart
239
+ ### GanttChart
208
240
 
209
241
  #### Bug Fixes
210
242
 
@@ -216,7 +248,7 @@
216
248
 
217
249
  ## 21.2.3 (2023-05-03)
218
250
 
219
- ### Gantt Chart
251
+ ### GanttChart
220
252
 
221
253
  #### Bug Fixes
222
254
 
@@ -226,7 +258,7 @@
226
258
 
227
259
  ## 21.1.41 (2023-04-18)
228
260
 
229
- ### Gantt Chart
261
+ ### GanttChart
230
262
 
231
263
  #### Bug Fixes
232
264
 
@@ -240,7 +272,7 @@
240
272
 
241
273
  ## 21.1.38 (2023-04-04)
242
274
 
243
- ### Gantt Chart
275
+ ### GanttChart
244
276
 
245
277
  #### Bug Fixes
246
278
 
@@ -252,7 +284,7 @@
252
284
 
253
285
  ## 21.1.37 (2023-03-29)
254
286
 
255
- ### Gantt Chart
287
+ ### GanttChart
256
288
 
257
289
  #### Bug Fixes
258
290
 
@@ -262,7 +294,7 @@
262
294
 
263
295
  ## 21.1.35 (2023-03-23)
264
296
 
265
- ### Gantt Chart
297
+ ### GanttChart
266
298
 
267
299
  #### Features
268
300
 
@@ -276,7 +308,7 @@ By disabling this `API` we can improve load time performance by two time. Please
276
308
 
277
309
  ## 20.4.54 (2023-03-14)
278
310
 
279
- ### Gantt
311
+ ### GanttChart
280
312
 
281
313
  #### Bug Fixes
282
314
 
@@ -289,7 +321,7 @@ By disabling this `API` we can improve load time performance by two time. Please
289
321
 
290
322
  ## 20.4.53 (2023-03-07)
291
323
 
292
- ### Gantt
324
+ ### GanttChart
293
325
 
294
326
  #### Bug Fixes
295
327
 
@@ -299,7 +331,7 @@ By disabling this `API` we can improve load time performance by two time. Please
299
331
 
300
332
  ## 20.4.52 (2023-02-28)
301
333
 
302
- ### Gantt
334
+ ### GanttChart
303
335
 
304
336
  #### Bug Fixes
305
337
 
@@ -312,7 +344,7 @@ By disabling this `API` we can improve load time performance by two time. Please
312
344
 
313
345
  ## 20.4.51 (2023-02-21)
314
346
 
315
- ### Gantt
347
+ ### GanttChart
316
348
 
317
349
  #### Bug Fixes
318
350
 
@@ -321,7 +353,7 @@ By disabling this `API` we can improve load time performance by two time. Please
321
353
 
322
354
  ## 20.4.50 (2023-02-14)
323
355
 
324
- ### Gantt
356
+ ### GanttChart
325
357
 
326
358
  #### Bug Fixes
327
359
 
@@ -329,7 +361,7 @@ By disabling this `API` we can improve load time performance by two time. Please
329
361
 
330
362
  ## 20.4.49 (2023-02-07)
331
363
 
332
- ### Gantt
364
+ ### GanttChart
333
365
 
334
366
  #### Bug Fixes
335
367
 
@@ -339,7 +371,7 @@ By disabling this `API` we can improve load time performance by two time. Please
339
371
 
340
372
  ## 20.4.48 (2023-02-01)
341
373
 
342
- ### Gantt
374
+ ### GanttChart
343
375
 
344
376
  #### Bug Fixes
345
377
 
@@ -349,7 +381,7 @@ By disabling this `API` we can improve load time performance by two time. Please
349
381
 
350
382
  ## 20.4.43 (2023-01-10)
351
383
 
352
- ### Gantt
384
+ ### GanttChart
353
385
 
354
386
  #### Bug Fixes
355
387
 
@@ -358,7 +390,7 @@ By disabling this `API` we can improve load time performance by two time. Please
358
390
 
359
391
  ## 20.4.42 (2023-01-04)
360
392
 
361
- ### Gantt
393
+ ### GanttChart
362
394
 
363
395
  #### Bug Fixes
364
396
 
@@ -367,7 +399,7 @@ By disabling this `API` we can improve load time performance by two time. Please
367
399
 
368
400
  ## 20.4.40 (2022-12-28)
369
401
 
370
- ### Gantt
402
+ ### GanttChart
371
403
 
372
404
  #### Bug Fixes
373
405
 
@@ -381,7 +413,7 @@ By disabling this `API` we can improve load time performance by two time. Please
381
413
 
382
414
  ## 20.4.38 (2022-12-21)
383
415
 
384
- ### Gantt
416
+ ### GanttChart
385
417
 
386
418
  #### Features
387
419
 
@@ -395,7 +427,7 @@ By disabling this `API` we can improve load time performance by two time. Please
395
427
 
396
428
  ## 20.3.60 (2022-12-06)
397
429
 
398
- ### Gantt
430
+ ### GanttChart
399
431
 
400
432
  #### Bug Fixes
401
433
 
@@ -407,7 +439,7 @@ By disabling this `API` we can improve load time performance by two time. Please
407
439
 
408
440
  ## 20.3.59 (2022-11-29)
409
441
 
410
- ### Gantt
442
+ ### GanttChart
411
443
 
412
444
  #### Bug Fixes
413
445
 
@@ -418,7 +450,7 @@ By disabling this `API` we can improve load time performance by two time. Please
418
450
 
419
451
  ## 20.3.58 (2022-11-22)
420
452
 
421
- ### Gantt
453
+ ### GanttChart
422
454
 
423
455
  #### Bug Fixes
424
456
 
@@ -427,7 +459,7 @@ By disabling this `API` we can improve load time performance by two time. Please
427
459
 
428
460
  ## 20.3.57 (2022-11-15)
429
461
 
430
- ### Gantt
462
+ ### GanttChart
431
463
 
432
464
  #### Bug Fixes
433
465
 
@@ -439,7 +471,7 @@ By disabling this `API` we can improve load time performance by two time. Please
439
471
 
440
472
  ## 20.3.56 (2022-11-08)
441
473
 
442
- ### Gantt
474
+ ### GanttChart
443
475
 
444
476
  #### Bug Fixes
445
477
 
@@ -449,7 +481,7 @@ By disabling this `API` we can improve load time performance by two time. Please
449
481
 
450
482
  ## 20.3.52 (2022-10-26)
451
483
 
452
- ### Gantt
484
+ ### GanttChart
453
485
 
454
486
  #### Bug Fixes
455
487
 
@@ -458,7 +490,7 @@ By disabling this `API` we can improve load time performance by two time. Please
458
490
 
459
491
  ## 20.3.50 (2022-10-18)
460
492
 
461
- ### Gantt
493
+ ### GanttChart
462
494
 
463
495
  #### Bug Fixes
464
496
 
@@ -468,7 +500,7 @@ By disabling this `API` we can improve load time performance by two time. Please
468
500
 
469
501
  ## 20.3.49 (2022-10-11)
470
502
 
471
- ### Gantt
503
+ ### GanttChart
472
504
 
473
505
  #### Bug Fixes
474
506
 
@@ -480,7 +512,7 @@ By disabling this `API` we can improve load time performance by two time. Please
480
512
 
481
513
  ## 20.3.48 (2022-10-05)
482
514
 
483
- ### Gantt
515
+ ### GanttChart
484
516
 
485
517
  #### Bug Fixes
486
518
 
@@ -493,7 +525,7 @@ By disabling this `API` we can improve load time performance by two time. Please
493
525
 
494
526
  ## 20.3.47 (2022-09-29)
495
527
 
496
- ### Gantt
528
+ ### GanttChart
497
529
 
498
530
  #### Features
499
531
 
@@ -513,7 +545,7 @@ By disabling this `API` we can improve load time performance by two time. Please
513
545
 
514
546
  ## 20.2.49 (2022-09-13)
515
547
 
516
- ### Gantt
548
+ ### GanttChart
517
549
 
518
550
  #### Bug Fixes
519
551
 
@@ -521,7 +553,7 @@ By disabling this `API` we can improve load time performance by two time. Please
521
553
 
522
554
  ## 20.2.46 (2022-08-30)
523
555
 
524
- ### Gantt
556
+ ### GanttChart
525
557
 
526
558
  #### Bug Fixes
527
559
 
@@ -531,7 +563,7 @@ By disabling this `API` we can improve load time performance by two time. Please
531
563
 
532
564
  ## 20.2.45 (2022-08-23)
533
565
 
534
- ### Gantt
566
+ ### GanttChart
535
567
 
536
568
  #### Bug Fixes
537
569
 
@@ -539,7 +571,7 @@ By disabling this `API` we can improve load time performance by two time. Please
539
571
 
540
572
  ## 20.2.44 (2022-08-16)
541
573
 
542
- ### Gantt
574
+ ### GanttChart
543
575
 
544
576
  #### Bug Fixes
545
577
 
@@ -551,7 +583,7 @@ By disabling this `API` we can improve load time performance by two time. Please
551
583
 
552
584
  ## 20.2.43 (2022-08-08)
553
585
 
554
- ### Gantt
586
+ ### GanttChart
555
587
 
556
588
  #### Bug Fixes
557
589
 
@@ -565,7 +597,7 @@ By disabling this `API` we can improve load time performance by two time. Please
565
597
 
566
598
  ## 20.2.39 (2022-07-19)
567
599
 
568
- ### Gantt
600
+ ### GanttChart
569
601
 
570
602
  #### Bug Fixes
571
603
 
@@ -573,7 +605,7 @@ By disabling this `API` we can improve load time performance by two time. Please
573
605
 
574
606
  ## 20.2.38 (2022-07-12)
575
607
 
576
- ### Gantt
608
+ ### GanttChart
577
609
 
578
610
  #### Bug Fixes
579
611
 
@@ -583,7 +615,7 @@ By disabling this `API` we can improve load time performance by two time. Please
583
615
 
584
616
  ## 20.2.36 (2022-06-30)
585
617
 
586
- ### Gantt
618
+ ### GanttChart
587
619
 
588
620
  #### Features
589
621
 
@@ -600,7 +632,7 @@ By disabling this `API` we can improve load time performance by two time. Please
600
632
 
601
633
  ## 20.1.60 (2022-06-14)
602
634
 
603
- ### Gantt
635
+ ### GanttChart
604
636
 
605
637
  #### Bug Fixes
606
638
 
@@ -610,7 +642,7 @@ By disabling this `API` we can improve load time performance by two time. Please
610
642
 
611
643
  ## 20.1.59 (2022-06-07)
612
644
 
613
- ### Gantt
645
+ ### GanttChart
614
646
 
615
647
  #### Bug Fixes
616
648
 
@@ -620,7 +652,7 @@ By disabling this `API` we can improve load time performance by two time. Please
620
652
 
621
653
  ## 20.1.58 (2022-05-31)
622
654
 
623
- ### Gantt
655
+ ### GanttChart
624
656
 
625
657
  #### Bug Fixes
626
658
 
@@ -630,7 +662,7 @@ By disabling this `API` we can improve load time performance by two time. Please
630
662
 
631
663
  ## 20.1.56 (2022-05-17)
632
664
 
633
- ### Gantt
665
+ ### GanttChart
634
666
 
635
667
  #### Bug Fixes
636
668
 
@@ -639,7 +671,7 @@ By disabling this `API` we can improve load time performance by two time. Please
639
671
 
640
672
  ## 20.1.55 (2022-05-12)
641
673
 
642
- ### Gantt
674
+ ### GanttChart
643
675
 
644
676
  #### Bug Fixes
645
677
 
@@ -649,7 +681,7 @@ By disabling this `API` we can improve load time performance by two time. Please
649
681
 
650
682
  ## 20.1.52 (2022-05-04)
651
683
 
652
- ### Gantt
684
+ ### GanttChart
653
685
 
654
686
  #### Bug Fixes
655
687
 
@@ -657,7 +689,7 @@ By disabling this `API` we can improve load time performance by two time. Please
657
689
 
658
690
  ## 20.1.51 (2022-04-26)
659
691
 
660
- ### Gantt
692
+ ### GanttChart
661
693
 
662
694
  #### Bug Fixes
663
695
 
@@ -668,7 +700,7 @@ By disabling this `API` we can improve load time performance by two time. Please
668
700
 
669
701
  ## 20.1.50 (2022-04-19)
670
702
 
671
- ### Gantt
703
+ ### GanttChart
672
704
 
673
705
  #### Bug Fixes
674
706
 
@@ -679,7 +711,7 @@ By disabling this `API` we can improve load time performance by two time. Please
679
711
 
680
712
  ## 20.1.48 (2022-04-12)
681
713
 
682
- ### Gantt
714
+ ### GanttChart
683
715
 
684
716
  #### Bug Fixes
685
717
 
@@ -689,7 +721,7 @@ By disabling this `API` we can improve load time performance by two time. Please
689
721
 
690
722
  ## 20.1.47 (2022-04-04)
691
723
 
692
- ### Gantt
724
+ ### GanttChart
693
725
 
694
726
  #### Bug Fixes
695
727
 
@@ -699,7 +731,7 @@ By disabling this `API` we can improve load time performance by two time. Please
699
731
 
700
732
  ## 19.4.56 (2022-03-15)
701
733
 
702
- ### Gantt
734
+ ### GanttChart
703
735
 
704
736
  #### Bug Fixes
705
737
 
@@ -713,7 +745,7 @@ By disabling this `API` we can improve load time performance by two time. Please
713
745
 
714
746
  ## 19.4.55 (2022-03-08)
715
747
 
716
- ### Gantt
748
+ ### GanttChart
717
749
 
718
750
  #### Bug Fixes
719
751
 
@@ -722,7 +754,7 @@ By disabling this `API` we can improve load time performance by two time. Please
722
754
 
723
755
  ## 19.4.54 (2022-03-01)
724
756
 
725
- ### Gantt
757
+ ### GanttChart
726
758
 
727
759
  #### Bug Fixes
728
760
 
@@ -731,7 +763,7 @@ By disabling this `API` we can improve load time performance by two time. Please
731
763
 
732
764
  ## 19.4.53 (2022-02-22)
733
765
 
734
- ### Gantt
766
+ ### GanttChart
735
767
 
736
768
  #### Bug Fixes
737
769
 
@@ -739,7 +771,7 @@ By disabling this `API` we can improve load time performance by two time. Please
739
771
 
740
772
  ## 19.4.52 (2022-02-15)
741
773
 
742
- ### Gantt
774
+ ### GanttChart
743
775
 
744
776
  #### Bug Fixes
745
777
 
@@ -748,7 +780,7 @@ By disabling this `API` we can improve load time performance by two time. Please
748
780
 
749
781
  ## 19.4.50 (2022-02-08)
750
782
 
751
- ### Gantt
783
+ ### GanttChart
752
784
 
753
785
  #### Bug Fixes
754
786
 
@@ -760,7 +792,7 @@ By disabling this `API` we can improve load time performance by two time. Please
760
792
 
761
793
  ## 19.4.47 (2022-01-25)
762
794
 
763
- ### Gantt
795
+ ### GanttChart
764
796
 
765
797
  #### Bug Fixes
766
798
 
@@ -774,7 +806,7 @@ By disabling this `API` we can improve load time performance by two time. Please
774
806
 
775
807
  ## 19.4.43 (2022-01-18)
776
808
 
777
- ### Gantt
809
+ ### GanttChart
778
810
 
779
811
  #### Bug Fixes
780
812
 
@@ -785,7 +817,7 @@ By disabling this `API` we can improve load time performance by two time. Please
785
817
 
786
818
  ## 19.4.42 (2022-01-11)
787
819
 
788
- ### Gantt
820
+ ### GanttChart
789
821
 
790
822
  #### Bug Fixes
791
823
 
@@ -794,7 +826,7 @@ By disabling this `API` we can improve load time performance by two time. Please
794
826
 
795
827
  ## 19.4.41 (2022-01-04)
796
828
 
797
- ### Gantt
829
+ ### GanttChart
798
830
 
799
831
  #### Bug Fixes
800
832
 
@@ -802,7 +834,7 @@ By disabling this `API` we can improve load time performance by two time. Please
802
834
  - `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
803
835
  - `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
804
836
 
805
- ### Gantt
837
+ ### GanttChart
806
838
 
807
839
  #### Bug Fixes
808
840
 
@@ -811,7 +843,7 @@ By disabling this `API` we can improve load time performance by two time. Please
811
843
 
812
844
  ## 19.4.40 (2021-12-28)
813
845
 
814
- ### Gantt
846
+ ### GanttChart
815
847
 
816
848
  #### Bug Fixes
817
849
 
@@ -819,7 +851,7 @@ By disabling this `API` we can improve load time performance by two time. Please
819
851
 
820
852
  ## 19.4.38 (2021-12-17)
821
853
 
822
- ### Gantt
854
+ ### GanttChart
823
855
 
824
856
  #### Bug Fixes
825
857
 
@@ -833,7 +865,7 @@ By disabling this `API` we can improve load time performance by two time. Please
833
865
 
834
866
  ## 19.3.56 (2021-12-02)
835
867
 
836
- ### Gantt
868
+ ### GanttChart
837
869
 
838
870
  #### Bug Fixes
839
871
 
@@ -842,7 +874,7 @@ By disabling this `API` we can improve load time performance by two time. Please
842
874
 
843
875
  ## 19.3.55 (2021-11-23)
844
876
 
845
- ### Gantt
877
+ ### GanttChart
846
878
 
847
879
  #### Bug Fixes
848
880
 
@@ -850,7 +882,7 @@ By disabling this `API` we can improve load time performance by two time. Please
850
882
 
851
883
  ## 19.3.53 (2021-11-12)
852
884
 
853
- ### Gantt
885
+ ### GanttChart
854
886
 
855
887
  #### Bug Fixes
856
888
 
@@ -858,7 +890,7 @@ By disabling this `API` we can improve load time performance by two time. Please
858
890
 
859
891
  ## 19.3.48 (2021-11-02)
860
892
 
861
- ### Gantt
893
+ ### GanttChart
862
894
 
863
895
  #### Bug Fixes
864
896
 
@@ -868,7 +900,7 @@ By disabling this `API` we can improve load time performance by two time. Please
868
900
 
869
901
  ## 19.3.47 (2021-10-26)
870
902
 
871
- ### Gantt
903
+ ### GanttChart
872
904
 
873
905
  #### Bug Fixes
874
906
 
@@ -883,7 +915,7 @@ By disabling this `API` we can improve load time performance by two time. Please
883
915
 
884
916
  ## 19.3.46 (2021-10-19)
885
917
 
886
- ### Gantt
918
+ ### GanttChart
887
919
 
888
920
  #### Bug Fixes
889
921
 
@@ -893,7 +925,7 @@ By disabling this `API` we can improve load time performance by two time. Please
893
925
 
894
926
  ## 19.3.45 (2021-10-12)
895
927
 
896
- ### Gantt
928
+ ### GanttChart
897
929
 
898
930
  #### Bug Fixes
899
931
 
@@ -903,7 +935,7 @@ By disabling this `API` we can improve load time performance by two time. Please
903
935
 
904
936
  ## 19.3.44 (2021-10-05)
905
937
 
906
- ### Gantt
938
+ ### GanttChart
907
939
 
908
940
  #### New Features
909
941
 
@@ -911,7 +943,7 @@ By disabling this `API` we can improve load time performance by two time. Please
911
943
 
912
944
  ## 19.2.62 (2021-09-14)
913
945
 
914
- ### Gantt
946
+ ### GanttChart
915
947
 
916
948
  #### Bug Fixes
917
949
 
@@ -920,7 +952,7 @@ By disabling this `API` we can improve load time performance by two time. Please
920
952
 
921
953
  ## 19.2.60 (2021-09-07)
922
954
 
923
- ### Gantt
955
+ ### GanttChart
924
956
 
925
957
  #### Bug Fixes
926
958
 
@@ -929,7 +961,7 @@ By disabling this `API` we can improve load time performance by two time. Please
929
961
 
930
962
  ## 19.2.59 (2021-08-31)
931
963
 
932
- ### Gantt
964
+ ### GanttChart
933
965
 
934
966
  #### Bug Fixes
935
967
 
@@ -937,7 +969,7 @@ By disabling this `API` we can improve load time performance by two time. Please
937
969
 
938
970
  ## 19.2.57 (2021-08-24)
939
971
 
940
- ### Gantt
972
+ ### GanttChart
941
973
 
942
974
  #### Bug Fixes
943
975
 
@@ -946,7 +978,7 @@ By disabling this `API` we can improve load time performance by two time. Please
946
978
 
947
979
  ## 19.2.56 (2021-08-17)
948
980
 
949
- ### Gantt
981
+ ### GanttChart
950
982
 
951
983
  #### Bug Fixes
952
984
 
@@ -955,7 +987,7 @@ By disabling this `API` we can improve load time performance by two time. Please
955
987
 
956
988
  ## 19.2.55 (2021-08-11)
957
989
 
958
- ### Gantt
990
+ ### GanttChart
959
991
 
960
992
  #### Bug Fixes
961
993
 
@@ -963,7 +995,7 @@ By disabling this `API` we can improve load time performance by two time. Please
963
995
 
964
996
  ## 19.2.47 (2021-07-13)
965
997
 
966
- ### Gantt
998
+ ### GanttChart
967
999
 
968
1000
  #### Bug Fixes
969
1001
 
@@ -973,7 +1005,7 @@ By disabling this `API` we can improve load time performance by two time. Please
973
1005
 
974
1006
  ## 19.2.46 (2021-07-06)
975
1007
 
976
- ### Gantt
1008
+ ### GanttChart
977
1009
 
978
1010
  #### Bug Fixes
979
1011
 
@@ -982,7 +1014,7 @@ By disabling this `API` we can improve load time performance by two time. Please
982
1014
 
983
1015
  ## 19.2.44 (2021-06-30)
984
1016
 
985
- ### Gantt
1017
+ ### GanttChart
986
1018
 
987
1019
  #### New Features
988
1020
 
@@ -990,7 +1022,7 @@ By disabling this `API` we can improve load time performance by two time. Please
990
1022
 
991
1023
  ## 19.1.69 (2021-06-15)
992
1024
 
993
- ### Gantt
1025
+ ### GanttChart
994
1026
 
995
1027
  #### Bug Fixes
996
1028
 
@@ -999,7 +1031,7 @@ By disabling this `API` we can improve load time performance by two time. Please
999
1031
 
1000
1032
  ## 19.1.66 (2021-06-01)
1001
1033
 
1002
- ### Gantt
1034
+ ### GanttChart
1003
1035
 
1004
1036
  #### Bug Fixes
1005
1037
 
@@ -1010,7 +1042,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1010
1042
 
1011
1043
  ## 19.1.64 (2021-05-19)
1012
1044
 
1013
- ### Gantt
1045
+ ### GanttChart
1014
1046
 
1015
1047
  #### Bug Fixes
1016
1048
 
@@ -1021,7 +1053,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1021
1053
 
1022
1054
  ## 19.1.63 (2021-05-13)
1023
1055
 
1024
- ### Gantt
1056
+ ### GanttChart
1025
1057
 
1026
1058
  #### New Features
1027
1059
 
@@ -1037,7 +1069,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1037
1069
 
1038
1070
  ## 19.1.59 (2021-05-04)
1039
1071
 
1040
- ### Gantt
1072
+ ### GanttChart
1041
1073
 
1042
1074
  #### Bug Fixes
1043
1075
 
@@ -1047,7 +1079,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1047
1079
 
1048
1080
  ## 19.1.58 (2021-04-27)
1049
1081
 
1050
- ### Gantt
1082
+ ### GanttChart
1051
1083
 
1052
1084
  #### Bug Fixes
1053
1085
 
@@ -1058,7 +1090,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1058
1090
 
1059
1091
  ## 19.1.57 (2021-04-20)
1060
1092
 
1061
- ### Gantt
1093
+ ### GanttChart
1062
1094
 
1063
1095
  #### Bug Fixes
1064
1096
 
@@ -1066,7 +1098,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1066
1098
 
1067
1099
  ## 19.1.56 (2021-04-13)
1068
1100
 
1069
- ### Gantt
1101
+ ### GanttChart
1070
1102
 
1071
1103
  #### Bug Fixes
1072
1104
 
@@ -1074,7 +1106,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1074
1106
 
1075
1107
  ## 19.1.55 (2021-04-06)
1076
1108
 
1077
- ### Gantt
1109
+ ### GanttChart
1078
1110
 
1079
1111
  #### Bug Fixes
1080
1112
 
@@ -1082,7 +1114,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1082
1114
 
1083
1115
  ## 19.1.54 (2021-03-30)
1084
1116
 
1085
- ### Gantt
1117
+ ### GanttChart
1086
1118
 
1087
1119
  #### New Features
1088
1120
 
@@ -1091,7 +1123,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1091
1123
 
1092
1124
  ## 18.4.49 (2021-03-23)
1093
1125
 
1094
- ### Gantt
1126
+ ### GanttChart
1095
1127
 
1096
1128
  #### New Features
1097
1129
 
@@ -1103,7 +1135,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1103
1135
 
1104
1136
  ## 18.4.47 (2021-03-09)
1105
1137
 
1106
- ### Gantt
1138
+ ### GanttChart
1107
1139
 
1108
1140
  #### Bug Fixes
1109
1141
 
@@ -1111,7 +1143,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1111
1143
 
1112
1144
  ## 18.4.44 (2021-02-23)
1113
1145
 
1114
- ### Gantt
1146
+ ### GanttChart
1115
1147
 
1116
1148
  #### Bug Fixes
1117
1149
 
@@ -1119,14 +1151,14 @@ By disabling this `API` we can improve load time performance by two time. Please
1119
1151
 
1120
1152
  ## 18.4.43 (2021-02-16)
1121
1153
 
1122
- ### Gantt
1154
+ ### GanttChart
1123
1155
 
1124
1156
  #### Bug Fixes
1125
1157
 
1126
1158
  - `#306101` - Rendered milestone at default end time on taskbar editing.
1127
1159
  - `#313819` - Highlighted bottom tier weekend header cell.
1128
1160
 
1129
- ### Gantt
1161
+ ### GanttChart
1130
1162
 
1131
1163
  #### Bug Fixes
1132
1164
 
@@ -1136,7 +1168,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1136
1168
 
1137
1169
  ## 18.4.41 (2021-02-02)
1138
1170
 
1139
- ### Gantt
1171
+ ### GanttChart
1140
1172
 
1141
1173
  #### Bug Fixes
1142
1174
 
@@ -1148,7 +1180,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1148
1180
 
1149
1181
  ## 18.4.39 (2021-01-28)
1150
1182
 
1151
- ### Gantt
1183
+ ### GanttChart
1152
1184
 
1153
1185
  #### New Features
1154
1186
 
@@ -1160,7 +1192,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1160
1192
 
1161
1193
  ## 18.4.35 (2021-01-19)
1162
1194
 
1163
- ### Gantt
1195
+ ### GanttChart
1164
1196
 
1165
1197
  #### Bug Fixes
1166
1198
 
@@ -1169,7 +1201,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1169
1201
 
1170
1202
  ## 18.4.33 (2021-01-05)
1171
1203
 
1172
- ### Gantt
1204
+ ### GanttChart
1173
1205
 
1174
1206
  #### Bug Fixes
1175
1207
 
@@ -1177,7 +1209,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1177
1209
 
1178
1210
  ## 18.4.32 (2020-12-29)
1179
1211
 
1180
- ### Gantt
1212
+ ### GanttChart
1181
1213
 
1182
1214
  #### Bug Fixes
1183
1215
 
@@ -1187,7 +1219,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1187
1219
 
1188
1220
  ## 18.4.31 (2020-12-22)
1189
1221
 
1190
- ### Gantt
1222
+ ### GanttChart
1191
1223
 
1192
1224
  #### Bug Fixes
1193
1225
 
@@ -1199,7 +1231,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1199
1231
 
1200
1232
  ## 18.4.30 (2020-12-17)
1201
1233
 
1202
- ### Gantt
1234
+ ### GanttChart
1203
1235
 
1204
1236
  #### New Features
1205
1237
 
@@ -1213,7 +1245,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1213
1245
 
1214
1246
  ## 18.3.52 (2020-12-01)
1215
1247
 
1216
- ### Gantt
1248
+ ### GanttChart
1217
1249
 
1218
1250
  #### Bug Fixes
1219
1251
 
@@ -1221,7 +1253,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1221
1253
 
1222
1254
  ## 18.3.51 (2020-11-24)
1223
1255
 
1224
- ### Gantt
1256
+ ### GanttChart
1225
1257
 
1226
1258
  #### Bug Fixes
1227
1259
 
@@ -1229,7 +1261,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1229
1261
 
1230
1262
  ## 18.3.50 (2020-11-17)
1231
1263
 
1232
- ### Gantt
1264
+ ### GanttChart
1233
1265
 
1234
1266
  #### Bug Fixes
1235
1267
 
@@ -1239,7 +1271,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1239
1271
 
1240
1272
  ## 18.3.48 (2020-11-11)
1241
1273
 
1242
- ### Gantt
1274
+ ### GanttChart
1243
1275
 
1244
1276
  #### Bug Fixes
1245
1277
 
@@ -1250,7 +1282,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1250
1282
 
1251
1283
  ## 18.3.47 (2020-11-05)
1252
1284
 
1253
- ### Gantt
1285
+ ### GanttChart
1254
1286
 
1255
1287
  #### New Features
1256
1288
 
@@ -1266,7 +1298,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1266
1298
 
1267
1299
  ## 18.3.42 (2020-10-20)
1268
1300
 
1269
- ### Gantt
1301
+ ### GanttChart
1270
1302
 
1271
1303
  #### Bug Fixes
1272
1304
 
@@ -1277,7 +1309,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1277
1309
 
1278
1310
  ## 18.3.35 (2020-10-01)
1279
1311
 
1280
- ### Gantt
1312
+ ### GanttChart
1281
1313
 
1282
1314
  #### Bug Fixes
1283
1315
 
@@ -1285,7 +1317,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1285
1317
 
1286
1318
  ## 18.2.59 (2020-09-21)
1287
1319
 
1288
- ### Gantt
1320
+ ### GanttChart
1289
1321
 
1290
1322
  #### New Features
1291
1323
 
@@ -1299,7 +1331,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1299
1331
 
1300
1332
  ## 18.2.57 (2020-09-08)
1301
1333
 
1302
- ### Gantt
1334
+ ### GanttChart
1303
1335
 
1304
1336
  #### Bug Fixes
1305
1337
 
@@ -1308,7 +1340,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1308
1340
 
1309
1341
  ## 18.2.56 (2020-09-01)
1310
1342
 
1311
- ### Gantt
1343
+ ### GanttChart
1312
1344
 
1313
1345
  #### Bug Fixes
1314
1346
 
@@ -1317,7 +1349,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1317
1349
 
1318
1350
  ## 18.2.55 (2020-08-25)
1319
1351
 
1320
- ### Gantt
1352
+ ### GanttChart
1321
1353
 
1322
1354
  #### Bug Fixes
1323
1355
 
@@ -1326,7 +1358,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1326
1358
 
1327
1359
  ## 18.2.48 (2020-08-04)
1328
1360
 
1329
- ### Gantt
1361
+ ### GanttChart
1330
1362
 
1331
1363
  #### New Features
1332
1364
 
@@ -1339,7 +1371,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1339
1371
 
1340
1372
  ## 18.2.47 (2020-07-28)
1341
1373
 
1342
- ### Gantt
1374
+ ### GanttChart
1343
1375
 
1344
1376
  #### Bug Fixes
1345
1377
 
@@ -1353,7 +1385,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1353
1385
 
1354
1386
  ## 18.2.46 (2020-07-21)
1355
1387
 
1356
- ### Gantt
1388
+ ### GanttChart
1357
1389
 
1358
1390
  #### Bug Fixes
1359
1391
 
@@ -1362,7 +1394,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1362
1394
 
1363
1395
  ## 18.2.45 (2020-07-14)
1364
1396
 
1365
- ### Gantt
1397
+ ### GanttChart
1366
1398
 
1367
1399
  #### Bug Fixes
1368
1400
 
@@ -1374,7 +1406,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1374
1406
 
1375
1407
  ## 18.2.44 (2020-07-07)
1376
1408
 
1377
- ### Gantt
1409
+ ### GanttChart
1378
1410
 
1379
1411
  #### New Features
1380
1412
 
@@ -1385,7 +1417,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1385
1417
 
1386
1418
  ## 18.1.59 (2020-06-23)
1387
1419
 
1388
- ### Gantt
1420
+ ### GanttChart
1389
1421
 
1390
1422
  #### Bug Fixes
1391
1423
 
@@ -1401,7 +1433,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1401
1433
 
1402
1434
  ## 18.1.57 (2020-06-16)
1403
1435
 
1404
- ### Gantt
1436
+ ### GanttChart
1405
1437
 
1406
1438
  #### New Features
1407
1439
 
@@ -1409,7 +1441,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1409
1441
 
1410
1442
  ## 18.1.55 (2020-06-02)
1411
1443
 
1412
- ### Gantt
1444
+ ### GanttChart
1413
1445
 
1414
1446
  #### Bug Fixes
1415
1447
 
@@ -1422,7 +1454,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1422
1454
 
1423
1455
  ## 18.1.54 (2020-05-26)
1424
1456
 
1425
- ### Gantt
1457
+ ### GanttChart
1426
1458
 
1427
1459
  #### Bug Fixes
1428
1460
 
@@ -1431,7 +1463,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1431
1463
 
1432
1464
  ## 18.1.53 (2020-05-19)
1433
1465
 
1434
- ### Gantt
1466
+ ### GanttChart
1435
1467
 
1436
1468
  #### Bug Fixes
1437
1469
 
@@ -1449,7 +1481,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1449
1481
 
1450
1482
  ## 18.1.52 (2020-05-13)
1451
1483
 
1452
- ### Gantt
1484
+ ### GanttChart
1453
1485
 
1454
1486
  #### Bug Fixes
1455
1487
 
@@ -1464,7 +1496,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1464
1496
 
1465
1497
  ## 18.1.48 (2020-05-05)
1466
1498
 
1467
- ### Gantt
1499
+ ### GanttChart
1468
1500
 
1469
1501
  #### Bug Fixes
1470
1502
 
@@ -1472,7 +1504,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1472
1504
 
1473
1505
  ## 18.1.46 (2020-04-28)
1474
1506
 
1475
- ### Gantt
1507
+ ### GanttChart
1476
1508
 
1477
1509
  #### Bug Fixes
1478
1510
 
@@ -1482,7 +1514,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1482
1514
 
1483
1515
  ## 18.1.45 (2020-04-21)
1484
1516
 
1485
- ### Gantt
1517
+ ### GanttChart
1486
1518
 
1487
1519
  #### Bug Fixes
1488
1520
 
@@ -1490,7 +1522,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1490
1522
 
1491
1523
  ## 18.1.44 (2020-04-14)
1492
1524
 
1493
- ### Gantt
1525
+ ### GanttChart
1494
1526
 
1495
1527
  #### Bug Fixes
1496
1528
 
@@ -1500,7 +1532,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1500
1532
 
1501
1533
  ## 18.1.43 (2020-04-07)
1502
1534
 
1503
- ### Gantt
1535
+ ### GanttChart
1504
1536
 
1505
1537
  #### New Features
1506
1538
 
@@ -1512,7 +1544,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1512
1544
 
1513
1545
  ## 18.1.42 (2020-04-01)
1514
1546
 
1515
- ### Gantt
1547
+ ### GanttChart
1516
1548
 
1517
1549
  #### Bug Fixes
1518
1550
 
@@ -1522,7 +1554,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1522
1554
 
1523
1555
  ## 18.1.36-beta (2020-03-19)
1524
1556
 
1525
- ### Gantt
1557
+ ### GanttChart
1526
1558
 
1527
1559
  #### New Features
1528
1560
 
@@ -1538,7 +1570,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1538
1570
 
1539
1571
  ## 17.4.46 (2020-01-30)
1540
1572
 
1541
- ### Gantt
1573
+ ### GanttChart
1542
1574
 
1543
1575
  #### New Features
1544
1576
 
@@ -1553,7 +1585,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1553
1585
 
1554
1586
  ## 17.4.44 (2021-01-21)
1555
1587
 
1556
- ### Gantt
1588
+ ### GanttChart
1557
1589
 
1558
1590
  #### Bug Fixes
1559
1591
 
@@ -1561,7 +1593,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1561
1593
 
1562
1594
  ## 17.4.41 (2020-01-07)
1563
1595
 
1564
- ### Gantt
1596
+ ### GanttChart
1565
1597
 
1566
1598
  #### New Features
1567
1599
 
@@ -1569,7 +1601,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1569
1601
 
1570
1602
  ## 17.4.40 (2019-12-24)
1571
1603
 
1572
- ### Gantt
1604
+ ### GanttChart
1573
1605
 
1574
1606
  #### Bug Fixes
1575
1607
 
@@ -1577,7 +1609,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1577
1609
 
1578
1610
  ## 17.4.39 (2019-12-17)
1579
1611
 
1580
- ### Gantt
1612
+ ### GanttChart
1581
1613
 
1582
1614
  #### Bug Fixes
1583
1615
 
@@ -1596,7 +1628,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1596
1628
 
1597
1629
  ## 17.3.30 (2019-12-03)
1598
1630
 
1599
- ### Gantt
1631
+ ### GanttChart
1600
1632
 
1601
1633
  #### Bug Fixes
1602
1634
 
@@ -1604,7 +1636,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1604
1636
 
1605
1637
  ## 17.3.29 (2019-11-26)
1606
1638
 
1607
- ### Gantt
1639
+ ### GanttChart
1608
1640
 
1609
1641
  #### Bug Fixes
1610
1642
 
@@ -1614,7 +1646,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1614
1646
 
1615
1647
  ## 17.3.28 (2019-11-19)
1616
1648
 
1617
- ### Gantt
1649
+ ### GanttChart
1618
1650
 
1619
1651
  #### Bug Fixes
1620
1652
 
@@ -1622,7 +1654,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1622
1654
 
1623
1655
  ## 17.3.19 (2019-10-22)
1624
1656
 
1625
- ### Gantt
1657
+ ### GanttChart
1626
1658
 
1627
1659
  #### Bug Fixes
1628
1660
 
@@ -1631,7 +1663,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1631
1663
 
1632
1664
  ## 17.3.14 (2019-10-03)
1633
1665
 
1634
- ### Gantt
1666
+ ### GanttChart
1635
1667
 
1636
1668
  #### Bug Fixes
1637
1669
 
@@ -1639,7 +1671,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1639
1671
 
1640
1672
  ## 17.3.9-beta (2019-09-20)
1641
1673
 
1642
- ### Gantt
1674
+ ### GanttChart
1643
1675
 
1644
1676
  #### Bug Fixes
1645
1677
 
@@ -1656,7 +1688,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1656
1688
 
1657
1689
  ## 17.2.46 (2019-08-22)
1658
1690
 
1659
- ### Gantt
1691
+ ### GanttChart
1660
1692
 
1661
1693
  #### Bug Fixes
1662
1694
 
@@ -1665,7 +1697,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1665
1697
 
1666
1698
  ## 17.2.41 (2019-08-14)
1667
1699
 
1668
- ### Gantt
1700
+ ### GanttChart
1669
1701
 
1670
1702
  #### Bug Fixes
1671
1703
 
@@ -1674,7 +1706,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1674
1706
 
1675
1707
  ## 17.2.40 (2019-08-06)
1676
1708
 
1677
- ### Gantt
1709
+ ### GanttChart
1678
1710
 
1679
1711
  #### Bug Fixes
1680
1712
 
@@ -1683,7 +1715,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1683
1715
 
1684
1716
  ## 17.2.36 (2019-07-24)
1685
1717
 
1686
- ### Gantt
1718
+ ### GanttChart
1687
1719
 
1688
1720
  #### Bug Fixes
1689
1721
 
@@ -1691,7 +1723,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1691
1723
 
1692
1724
  ## 17.2.28-beta (2019-06-27)
1693
1725
 
1694
- ### Gantt
1726
+ ### GanttChart
1695
1727
 
1696
1728
  #### Bug Fixes
1697
1729
 
@@ -1705,7 +1737,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1705
1737
 
1706
1738
  ## 17.1.49 (2019-05-29)
1707
1739
 
1708
- ### Gantt
1740
+ ### GanttChart
1709
1741
 
1710
1742
  #### Bug Fixes
1711
1743
 
@@ -1713,7 +1745,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1713
1745
 
1714
1746
  ## 17.1.47 (2019-05-14)
1715
1747
 
1716
- ### Gantt
1748
+ ### GanttChart
1717
1749
 
1718
1750
  #### Bug Fixes
1719
1751
 
@@ -1725,7 +1757,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1725
1757
 
1726
1758
  ## 17.1.43 (2019-04-30)
1727
1759
 
1728
- ### Gantt
1760
+ ### GanttChart
1729
1761
 
1730
1762
  #### Bug Fixes
1731
1763
 
@@ -1733,7 +1765,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1733
1765
 
1734
1766
  ## 17.1.40 (2019-04-09)
1735
1767
 
1736
- ### Gantt
1768
+ ### GanttChart
1737
1769
 
1738
1770
  #### Bug Fixes
1739
1771
 
@@ -1741,7 +1773,7 @@ By disabling this `API` we can improve load time performance by two time. Please
1741
1773
 
1742
1774
  ## 17.1.32-beta (2019-03-13)
1743
1775
 
1744
- ### Gantt
1776
+ ### GanttChart
1745
1777
 
1746
1778
  - **Data sources** – Bind hierarchical or self-referential data to Gantt chart with an array of JavaScript objects or DataManager.
1747
1779
  - **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.