@syncfusion/ej2-gantt 22.2.12 → 23.1.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +197 -164
- package/dist/ej2-gantt.min.js +3 -3
- package/dist/ej2-gantt.umd.min.js +3 -3
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +973 -280
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +1011 -302
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +3 -3
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +21 -21
- package/src/gantt/actions/cell-edit.js +4 -1
- package/src/gantt/actions/connector-line-edit.js +48 -6
- package/src/gantt/actions/critical-path.d.ts +2 -0
- package/src/gantt/actions/critical-path.js +79 -61
- package/src/gantt/actions/dependency.d.ts +1 -0
- package/src/gantt/actions/dependency.js +92 -31
- package/src/gantt/actions/dialog-edit.js +28 -8
- package/src/gantt/actions/edit.js +18 -8
- package/src/gantt/actions/pdf-export.d.ts +4 -1
- package/src/gantt/actions/pdf-export.js +36 -3
- package/src/gantt/actions/rowdragdrop.js +10 -2
- package/src/gantt/actions/selection.js +22 -5
- package/src/gantt/actions/taskbar-edit.js +58 -38
- package/src/gantt/actions/toolbar.js +8 -0
- package/src/gantt/base/date-processor.js +1 -1
- package/src/gantt/base/gantt-chart.d.ts +1 -0
- package/src/gantt/base/gantt-chart.js +85 -6
- package/src/gantt/base/gantt-model.d.ts +7 -0
- package/src/gantt/base/gantt.d.ts +6 -0
- package/src/gantt/base/gantt.js +78 -16
- package/src/gantt/base/interface.d.ts +14 -0
- package/src/gantt/base/splitter.js +1 -0
- package/src/gantt/base/task-processor.d.ts +4 -4
- package/src/gantt/base/task-processor.js +75 -25
- package/src/gantt/base/tree-grid.js +19 -10
- package/src/gantt/export/export-helper.d.ts +5 -1
- package/src/gantt/export/export-helper.js +150 -3
- package/src/gantt/export/pdf-base/pdf-grid-table.js +2 -2
- package/src/gantt/export/pdf-base/pdf-style/gantt-theme.js +8 -0
- package/src/gantt/export/pdf-base/treegrid-layouter.js +3 -1
- package/src/gantt/export/pdf-connector-line.js +3 -1
- package/src/gantt/export/pdf-gantt.js +6 -0
- package/src/gantt/export/pdf-taskbar.d.ts +13 -0
- package/src/gantt/export/pdf-taskbar.js +39 -5
- package/src/gantt/export/pdf-timeline.js +17 -8
- package/src/gantt/export/pdf-treegrid.js +3 -3
- package/src/gantt/models/task-fields-model.d.ts +7 -0
- package/src/gantt/models/task-fields.d.ts +6 -0
- package/src/gantt/models/task-fields.js +3 -0
- package/src/gantt/renderer/chart-rows.d.ts +1 -1
- package/src/gantt/renderer/chart-rows.js +44 -34
- package/src/gantt/renderer/connector-line.js +52 -11
- package/src/gantt/renderer/edit-tooltip.js +2 -1
- package/src/gantt/renderer/timeline.js +16 -9
- package/src/gantt/renderer/tooltip.js +5 -5
- package/styles/bootstrap-dark.css +44 -100
- package/styles/bootstrap.css +44 -100
- package/styles/bootstrap4.css +44 -100
- package/styles/bootstrap5-dark.css +44 -100
- package/styles/bootstrap5.css +44 -100
- package/styles/fabric-dark.css +44 -100
- package/styles/fabric.css +44 -100
- package/styles/fluent-dark.css +44 -100
- package/styles/fluent.css +44 -100
- package/styles/gantt/_layout.scss +44 -31
- package/styles/gantt/_theme.scss +104 -98
- package/styles/gantt/bootstrap-dark.css +44 -100
- package/styles/gantt/bootstrap-dark.scss +1 -1
- package/styles/gantt/bootstrap.css +44 -100
- package/styles/gantt/bootstrap.scss +1 -1
- package/styles/gantt/bootstrap4.css +44 -100
- package/styles/gantt/bootstrap4.scss +1 -1
- package/styles/gantt/bootstrap5-dark.css +44 -100
- package/styles/gantt/bootstrap5-dark.scss +1 -1
- package/styles/gantt/bootstrap5.css +44 -100
- package/styles/gantt/bootstrap5.scss +1 -1
- package/styles/gantt/fabric-dark.css +44 -100
- package/styles/gantt/fabric-dark.scss +1 -1
- package/styles/gantt/fabric.css +44 -100
- package/styles/gantt/fabric.scss +1 -1
- package/styles/gantt/fluent-dark.css +44 -100
- package/styles/gantt/fluent-dark.scss +1 -1
- package/styles/gantt/fluent.css +44 -100
- package/styles/gantt/fluent.scss +1 -1
- package/styles/gantt/highcontrast-light.css +40 -100
- package/styles/gantt/highcontrast-light.scss +1 -1
- package/styles/gantt/highcontrast.css +44 -100
- package/styles/gantt/highcontrast.scss +1 -1
- package/styles/gantt/icons/_bootstrap-dark.scss +4 -0
- package/styles/gantt/icons/_bootstrap.scss +4 -0
- package/styles/gantt/icons/_bootstrap4.scss +4 -0
- package/styles/gantt/icons/_bootstrap5.scss +4 -0
- package/styles/gantt/icons/_fabric-dark.scss +4 -0
- package/styles/gantt/icons/_fabric.scss +4 -0
- package/styles/gantt/icons/_fluent.scss +4 -0
- package/styles/gantt/icons/_fusionnew.scss +4 -0
- package/styles/gantt/icons/_highcontrast.scss +4 -0
- package/styles/gantt/icons/_material-dark.scss +4 -0
- package/styles/gantt/icons/_material.scss +4 -0
- package/styles/gantt/icons/_material3.scss +4 -0
- package/styles/gantt/icons/_tailwind-dark.scss +4 -0
- package/styles/gantt/icons/_tailwind.scss +4 -0
- package/styles/gantt/material-dark.css +44 -101
- package/styles/gantt/material-dark.scss +1 -1
- package/styles/gantt/material.css +44 -101
- package/styles/gantt/material.scss +1 -1
- package/styles/gantt/material3-dark.css +45 -102
- package/styles/gantt/material3-dark.scss +1 -1
- package/styles/gantt/material3.css +45 -102
- package/styles/gantt/material3.scss +1 -1
- package/styles/gantt/tailwind-dark.css +44 -101
- package/styles/gantt/tailwind-dark.scss +1 -1
- package/styles/gantt/tailwind.css +44 -101
- package/styles/gantt/tailwind.scss +1 -1
- package/styles/highcontrast-light.css +40 -100
- package/styles/highcontrast.css +44 -100
- package/styles/material-dark.css +44 -101
- package/styles/material.css +44 -101
- package/styles/material3-dark.css +45 -102
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +45 -102
- package/styles/material3.scss +1 -1
- package/styles/tailwind-dark.css +44 -101
- package/styles/tailwind.css +44 -101
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,40 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### GanttChart
|
|
6
|
+
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#I479961` - Milestone baseline moves along with the milestone issue has been fixed.
|
|
10
|
+
- `#I501391` - Misalignment in tooltip when connecting predecessor.
|
|
11
|
+
- `#I495216` - Predecessor is not displayed when we give `GUID` issue has been fixed.
|
|
12
|
+
- `#I499587` - Update of custom column in general tab issue has been fixed.
|
|
13
|
+
- `#I184189` - Changing values in the action Begin event does not reflect while rendering issue has been fixed.
|
|
14
|
+
- `#F184629` - Milestone not rendered properly after editing issue has been fixed.
|
|
15
|
+
- `#I492520` - Critical path styling not getting cleared correctly issue has been fixed.
|
|
16
|
+
- `#I502650` - Taskbar dragging and progress resizing while moving the mouse outside chart issue has been fixed.
|
|
17
|
+
- `#I493515` - When we collapse with Virtualization, the styles doesn't apply properly issue has been fixed.
|
|
18
|
+
- `#I486977` - White space issue occur when we close the side pane issue has been fixed.
|
|
19
|
+
|
|
20
|
+
## 23.1.36 (2023-09-15)
|
|
21
|
+
|
|
22
|
+
### GanttChart
|
|
23
|
+
|
|
24
|
+
#### Features
|
|
25
|
+
|
|
26
|
+
- `#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).
|
|
27
|
+
- `#I396039` - Provided baseline support for PDF export in Gantt Chart.
|
|
28
|
+
- 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).
|
|
29
|
+
- Provided touch interaction support for taskbar resizing, dragging, predecessor connectivity in Gantt chart.
|
|
30
|
+
|
|
31
|
+
#### Bug Fixes
|
|
32
|
+
|
|
33
|
+
- `#I492654` - When empty data source pdf export exception thrown issue has been fixed.
|
|
34
|
+
- `#I479578` - Milestone parent is not appearing issue has been fixed.
|
|
35
|
+
|
|
36
|
+
## 22.2.12 (2023-09-05)
|
|
37
|
+
|
|
38
|
+
### GanttChart
|
|
6
39
|
|
|
7
40
|
#### Bug Fixes
|
|
8
41
|
|
|
@@ -16,7 +49,7 @@
|
|
|
16
49
|
|
|
17
50
|
## 22.2.11 (2023-08-29)
|
|
18
51
|
|
|
19
|
-
###
|
|
52
|
+
### GanttChart
|
|
20
53
|
|
|
21
54
|
#### Bug Fixes
|
|
22
55
|
|
|
@@ -27,7 +60,7 @@
|
|
|
27
60
|
|
|
28
61
|
## 22.2.10 (2023-08-22)
|
|
29
62
|
|
|
30
|
-
###
|
|
63
|
+
### GanttChart
|
|
31
64
|
|
|
32
65
|
#### Bug Fixes
|
|
33
66
|
|
|
@@ -37,7 +70,7 @@
|
|
|
37
70
|
|
|
38
71
|
## 22.2.9 (2023-08-15)
|
|
39
72
|
|
|
40
|
-
###
|
|
73
|
+
### GanttChart
|
|
41
74
|
|
|
42
75
|
#### Bug Fixes
|
|
43
76
|
|
|
@@ -50,7 +83,7 @@
|
|
|
50
83
|
|
|
51
84
|
## 22.2.8 (2023-08-08)
|
|
52
85
|
|
|
53
|
-
###
|
|
86
|
+
### GanttChart
|
|
54
87
|
|
|
55
88
|
#### Bug Fixes
|
|
56
89
|
|
|
@@ -61,7 +94,7 @@
|
|
|
61
94
|
|
|
62
95
|
## 22.2.7 (2023-08-02)
|
|
63
96
|
|
|
64
|
-
###
|
|
97
|
+
### GanttChart
|
|
65
98
|
|
|
66
99
|
#### Bug Fixes
|
|
67
100
|
|
|
@@ -79,7 +112,7 @@
|
|
|
79
112
|
|
|
80
113
|
## 22.2.5 (2023-07-27)
|
|
81
114
|
|
|
82
|
-
###
|
|
115
|
+
### GanttChart
|
|
83
116
|
|
|
84
117
|
#### Bug Fixes
|
|
85
118
|
|
|
@@ -91,7 +124,7 @@
|
|
|
91
124
|
|
|
92
125
|
## 22.1.39 (2023-07-18)
|
|
93
126
|
|
|
94
|
-
###
|
|
127
|
+
### GanttChart
|
|
95
128
|
|
|
96
129
|
#### Bug Fixes
|
|
97
130
|
|
|
@@ -99,7 +132,7 @@
|
|
|
99
132
|
|
|
100
133
|
## 22.1.38 (2023-07-11)
|
|
101
134
|
|
|
102
|
-
###
|
|
135
|
+
### GanttChart
|
|
103
136
|
|
|
104
137
|
#### Bug Fixes
|
|
105
138
|
|
|
@@ -113,7 +146,7 @@
|
|
|
113
146
|
|
|
114
147
|
## 22.1.37 (2023-07-04)
|
|
115
148
|
|
|
116
|
-
###
|
|
149
|
+
### GanttChart
|
|
117
150
|
|
|
118
151
|
#### Bug Fixes
|
|
119
152
|
|
|
@@ -124,7 +157,7 @@
|
|
|
124
157
|
|
|
125
158
|
## 22.1.36 (2023-06-28)
|
|
126
159
|
|
|
127
|
-
###
|
|
160
|
+
### GanttChart
|
|
128
161
|
|
|
129
162
|
#### Bug Fixes
|
|
130
163
|
|
|
@@ -139,7 +172,7 @@
|
|
|
139
172
|
|
|
140
173
|
## 22.1.34 (2023-06-21)
|
|
141
174
|
|
|
142
|
-
###
|
|
175
|
+
### GanttChart
|
|
143
176
|
|
|
144
177
|
#### Features
|
|
145
178
|
|
|
@@ -151,7 +184,7 @@
|
|
|
151
184
|
|
|
152
185
|
## 21.2.10 (2023-06-13)
|
|
153
186
|
|
|
154
|
-
###
|
|
187
|
+
### GanttChart
|
|
155
188
|
|
|
156
189
|
#### Bug Fixes
|
|
157
190
|
|
|
@@ -162,7 +195,7 @@
|
|
|
162
195
|
|
|
163
196
|
## 21.2.9 (2023-06-06)
|
|
164
197
|
|
|
165
|
-
###
|
|
198
|
+
### GanttChart
|
|
166
199
|
|
|
167
200
|
#### Bug Fixes
|
|
168
201
|
|
|
@@ -182,7 +215,7 @@
|
|
|
182
215
|
|
|
183
216
|
## 21.2.8 (2023-05-30)
|
|
184
217
|
|
|
185
|
-
###
|
|
218
|
+
### GanttChart
|
|
186
219
|
|
|
187
220
|
#### Bug Fixes
|
|
188
221
|
|
|
@@ -197,7 +230,7 @@
|
|
|
197
230
|
|
|
198
231
|
## 21.2.6 (2023-05-23)
|
|
199
232
|
|
|
200
|
-
###
|
|
233
|
+
### GanttChart
|
|
201
234
|
|
|
202
235
|
#### Bug Fixes
|
|
203
236
|
|
|
@@ -207,7 +240,7 @@
|
|
|
207
240
|
|
|
208
241
|
## 21.2.5 (2023-05-16)
|
|
209
242
|
|
|
210
|
-
###
|
|
243
|
+
### GanttChart
|
|
211
244
|
|
|
212
245
|
#### Bug Fixes
|
|
213
246
|
|
|
@@ -220,7 +253,7 @@
|
|
|
220
253
|
|
|
221
254
|
## 21.2.4 (2023-05-09)
|
|
222
255
|
|
|
223
|
-
###
|
|
256
|
+
### GanttChart
|
|
224
257
|
|
|
225
258
|
#### Bug Fixes
|
|
226
259
|
|
|
@@ -232,7 +265,7 @@
|
|
|
232
265
|
|
|
233
266
|
## 21.2.3 (2023-05-03)
|
|
234
267
|
|
|
235
|
-
###
|
|
268
|
+
### GanttChart
|
|
236
269
|
|
|
237
270
|
#### Bug Fixes
|
|
238
271
|
|
|
@@ -242,7 +275,7 @@
|
|
|
242
275
|
|
|
243
276
|
## 21.1.41 (2023-04-18)
|
|
244
277
|
|
|
245
|
-
###
|
|
278
|
+
### GanttChart
|
|
246
279
|
|
|
247
280
|
#### Bug Fixes
|
|
248
281
|
|
|
@@ -256,7 +289,7 @@
|
|
|
256
289
|
|
|
257
290
|
## 21.1.38 (2023-04-04)
|
|
258
291
|
|
|
259
|
-
###
|
|
292
|
+
### GanttChart
|
|
260
293
|
|
|
261
294
|
#### Bug Fixes
|
|
262
295
|
|
|
@@ -268,7 +301,7 @@
|
|
|
268
301
|
|
|
269
302
|
## 21.1.37 (2023-03-29)
|
|
270
303
|
|
|
271
|
-
###
|
|
304
|
+
### GanttChart
|
|
272
305
|
|
|
273
306
|
#### Bug Fixes
|
|
274
307
|
|
|
@@ -278,7 +311,7 @@
|
|
|
278
311
|
|
|
279
312
|
## 21.1.35 (2023-03-23)
|
|
280
313
|
|
|
281
|
-
###
|
|
314
|
+
### GanttChart
|
|
282
315
|
|
|
283
316
|
#### Features
|
|
284
317
|
|
|
@@ -292,7 +325,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
292
325
|
|
|
293
326
|
## 20.4.54 (2023-03-14)
|
|
294
327
|
|
|
295
|
-
###
|
|
328
|
+
### GanttChart
|
|
296
329
|
|
|
297
330
|
#### Bug Fixes
|
|
298
331
|
|
|
@@ -305,7 +338,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
305
338
|
|
|
306
339
|
## 20.4.53 (2023-03-07)
|
|
307
340
|
|
|
308
|
-
###
|
|
341
|
+
### GanttChart
|
|
309
342
|
|
|
310
343
|
#### Bug Fixes
|
|
311
344
|
|
|
@@ -315,7 +348,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
315
348
|
|
|
316
349
|
## 20.4.52 (2023-02-28)
|
|
317
350
|
|
|
318
|
-
###
|
|
351
|
+
### GanttChart
|
|
319
352
|
|
|
320
353
|
#### Bug Fixes
|
|
321
354
|
|
|
@@ -328,7 +361,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
328
361
|
|
|
329
362
|
## 20.4.51 (2023-02-21)
|
|
330
363
|
|
|
331
|
-
###
|
|
364
|
+
### GanttChart
|
|
332
365
|
|
|
333
366
|
#### Bug Fixes
|
|
334
367
|
|
|
@@ -337,7 +370,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
337
370
|
|
|
338
371
|
## 20.4.50 (2023-02-14)
|
|
339
372
|
|
|
340
|
-
###
|
|
373
|
+
### GanttChart
|
|
341
374
|
|
|
342
375
|
#### Bug Fixes
|
|
343
376
|
|
|
@@ -345,7 +378,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
345
378
|
|
|
346
379
|
## 20.4.49 (2023-02-07)
|
|
347
380
|
|
|
348
|
-
###
|
|
381
|
+
### GanttChart
|
|
349
382
|
|
|
350
383
|
#### Bug Fixes
|
|
351
384
|
|
|
@@ -355,7 +388,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
355
388
|
|
|
356
389
|
## 20.4.48 (2023-02-01)
|
|
357
390
|
|
|
358
|
-
###
|
|
391
|
+
### GanttChart
|
|
359
392
|
|
|
360
393
|
#### Bug Fixes
|
|
361
394
|
|
|
@@ -365,7 +398,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
365
398
|
|
|
366
399
|
## 20.4.43 (2023-01-10)
|
|
367
400
|
|
|
368
|
-
###
|
|
401
|
+
### GanttChart
|
|
369
402
|
|
|
370
403
|
#### Bug Fixes
|
|
371
404
|
|
|
@@ -374,7 +407,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
374
407
|
|
|
375
408
|
## 20.4.42 (2023-01-04)
|
|
376
409
|
|
|
377
|
-
###
|
|
410
|
+
### GanttChart
|
|
378
411
|
|
|
379
412
|
#### Bug Fixes
|
|
380
413
|
|
|
@@ -383,7 +416,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
383
416
|
|
|
384
417
|
## 20.4.40 (2022-12-28)
|
|
385
418
|
|
|
386
|
-
###
|
|
419
|
+
### GanttChart
|
|
387
420
|
|
|
388
421
|
#### Bug Fixes
|
|
389
422
|
|
|
@@ -397,7 +430,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
397
430
|
|
|
398
431
|
## 20.4.38 (2022-12-21)
|
|
399
432
|
|
|
400
|
-
###
|
|
433
|
+
### GanttChart
|
|
401
434
|
|
|
402
435
|
#### Features
|
|
403
436
|
|
|
@@ -411,7 +444,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
411
444
|
|
|
412
445
|
## 20.3.60 (2022-12-06)
|
|
413
446
|
|
|
414
|
-
###
|
|
447
|
+
### GanttChart
|
|
415
448
|
|
|
416
449
|
#### Bug Fixes
|
|
417
450
|
|
|
@@ -423,7 +456,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
423
456
|
|
|
424
457
|
## 20.3.59 (2022-11-29)
|
|
425
458
|
|
|
426
|
-
###
|
|
459
|
+
### GanttChart
|
|
427
460
|
|
|
428
461
|
#### Bug Fixes
|
|
429
462
|
|
|
@@ -434,7 +467,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
434
467
|
|
|
435
468
|
## 20.3.58 (2022-11-22)
|
|
436
469
|
|
|
437
|
-
###
|
|
470
|
+
### GanttChart
|
|
438
471
|
|
|
439
472
|
#### Bug Fixes
|
|
440
473
|
|
|
@@ -443,7 +476,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
443
476
|
|
|
444
477
|
## 20.3.57 (2022-11-15)
|
|
445
478
|
|
|
446
|
-
###
|
|
479
|
+
### GanttChart
|
|
447
480
|
|
|
448
481
|
#### Bug Fixes
|
|
449
482
|
|
|
@@ -455,7 +488,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
455
488
|
|
|
456
489
|
## 20.3.56 (2022-11-08)
|
|
457
490
|
|
|
458
|
-
###
|
|
491
|
+
### GanttChart
|
|
459
492
|
|
|
460
493
|
#### Bug Fixes
|
|
461
494
|
|
|
@@ -465,7 +498,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
465
498
|
|
|
466
499
|
## 20.3.52 (2022-10-26)
|
|
467
500
|
|
|
468
|
-
###
|
|
501
|
+
### GanttChart
|
|
469
502
|
|
|
470
503
|
#### Bug Fixes
|
|
471
504
|
|
|
@@ -474,7 +507,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
474
507
|
|
|
475
508
|
## 20.3.50 (2022-10-18)
|
|
476
509
|
|
|
477
|
-
###
|
|
510
|
+
### GanttChart
|
|
478
511
|
|
|
479
512
|
#### Bug Fixes
|
|
480
513
|
|
|
@@ -484,7 +517,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
484
517
|
|
|
485
518
|
## 20.3.49 (2022-10-11)
|
|
486
519
|
|
|
487
|
-
###
|
|
520
|
+
### GanttChart
|
|
488
521
|
|
|
489
522
|
#### Bug Fixes
|
|
490
523
|
|
|
@@ -496,7 +529,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
496
529
|
|
|
497
530
|
## 20.3.48 (2022-10-05)
|
|
498
531
|
|
|
499
|
-
###
|
|
532
|
+
### GanttChart
|
|
500
533
|
|
|
501
534
|
#### Bug Fixes
|
|
502
535
|
|
|
@@ -509,7 +542,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
509
542
|
|
|
510
543
|
## 20.3.47 (2022-09-29)
|
|
511
544
|
|
|
512
|
-
###
|
|
545
|
+
### GanttChart
|
|
513
546
|
|
|
514
547
|
#### Features
|
|
515
548
|
|
|
@@ -529,7 +562,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
529
562
|
|
|
530
563
|
## 20.2.49 (2022-09-13)
|
|
531
564
|
|
|
532
|
-
###
|
|
565
|
+
### GanttChart
|
|
533
566
|
|
|
534
567
|
#### Bug Fixes
|
|
535
568
|
|
|
@@ -537,7 +570,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
537
570
|
|
|
538
571
|
## 20.2.46 (2022-08-30)
|
|
539
572
|
|
|
540
|
-
###
|
|
573
|
+
### GanttChart
|
|
541
574
|
|
|
542
575
|
#### Bug Fixes
|
|
543
576
|
|
|
@@ -547,7 +580,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
547
580
|
|
|
548
581
|
## 20.2.45 (2022-08-23)
|
|
549
582
|
|
|
550
|
-
###
|
|
583
|
+
### GanttChart
|
|
551
584
|
|
|
552
585
|
#### Bug Fixes
|
|
553
586
|
|
|
@@ -555,7 +588,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
555
588
|
|
|
556
589
|
## 20.2.44 (2022-08-16)
|
|
557
590
|
|
|
558
|
-
###
|
|
591
|
+
### GanttChart
|
|
559
592
|
|
|
560
593
|
#### Bug Fixes
|
|
561
594
|
|
|
@@ -567,7 +600,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
567
600
|
|
|
568
601
|
## 20.2.43 (2022-08-08)
|
|
569
602
|
|
|
570
|
-
###
|
|
603
|
+
### GanttChart
|
|
571
604
|
|
|
572
605
|
#### Bug Fixes
|
|
573
606
|
|
|
@@ -581,7 +614,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
581
614
|
|
|
582
615
|
## 20.2.39 (2022-07-19)
|
|
583
616
|
|
|
584
|
-
###
|
|
617
|
+
### GanttChart
|
|
585
618
|
|
|
586
619
|
#### Bug Fixes
|
|
587
620
|
|
|
@@ -589,7 +622,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
589
622
|
|
|
590
623
|
## 20.2.38 (2022-07-12)
|
|
591
624
|
|
|
592
|
-
###
|
|
625
|
+
### GanttChart
|
|
593
626
|
|
|
594
627
|
#### Bug Fixes
|
|
595
628
|
|
|
@@ -599,7 +632,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
599
632
|
|
|
600
633
|
## 20.2.36 (2022-06-30)
|
|
601
634
|
|
|
602
|
-
###
|
|
635
|
+
### GanttChart
|
|
603
636
|
|
|
604
637
|
#### Features
|
|
605
638
|
|
|
@@ -616,7 +649,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
616
649
|
|
|
617
650
|
## 20.1.60 (2022-06-14)
|
|
618
651
|
|
|
619
|
-
###
|
|
652
|
+
### GanttChart
|
|
620
653
|
|
|
621
654
|
#### Bug Fixes
|
|
622
655
|
|
|
@@ -626,7 +659,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
626
659
|
|
|
627
660
|
## 20.1.59 (2022-06-07)
|
|
628
661
|
|
|
629
|
-
###
|
|
662
|
+
### GanttChart
|
|
630
663
|
|
|
631
664
|
#### Bug Fixes
|
|
632
665
|
|
|
@@ -636,7 +669,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
636
669
|
|
|
637
670
|
## 20.1.58 (2022-05-31)
|
|
638
671
|
|
|
639
|
-
###
|
|
672
|
+
### GanttChart
|
|
640
673
|
|
|
641
674
|
#### Bug Fixes
|
|
642
675
|
|
|
@@ -646,7 +679,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
646
679
|
|
|
647
680
|
## 20.1.56 (2022-05-17)
|
|
648
681
|
|
|
649
|
-
###
|
|
682
|
+
### GanttChart
|
|
650
683
|
|
|
651
684
|
#### Bug Fixes
|
|
652
685
|
|
|
@@ -655,7 +688,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
655
688
|
|
|
656
689
|
## 20.1.55 (2022-05-12)
|
|
657
690
|
|
|
658
|
-
###
|
|
691
|
+
### GanttChart
|
|
659
692
|
|
|
660
693
|
#### Bug Fixes
|
|
661
694
|
|
|
@@ -665,7 +698,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
665
698
|
|
|
666
699
|
## 20.1.52 (2022-05-04)
|
|
667
700
|
|
|
668
|
-
###
|
|
701
|
+
### GanttChart
|
|
669
702
|
|
|
670
703
|
#### Bug Fixes
|
|
671
704
|
|
|
@@ -673,7 +706,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
673
706
|
|
|
674
707
|
## 20.1.51 (2022-04-26)
|
|
675
708
|
|
|
676
|
-
###
|
|
709
|
+
### GanttChart
|
|
677
710
|
|
|
678
711
|
#### Bug Fixes
|
|
679
712
|
|
|
@@ -684,7 +717,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
684
717
|
|
|
685
718
|
## 20.1.50 (2022-04-19)
|
|
686
719
|
|
|
687
|
-
###
|
|
720
|
+
### GanttChart
|
|
688
721
|
|
|
689
722
|
#### Bug Fixes
|
|
690
723
|
|
|
@@ -695,7 +728,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
695
728
|
|
|
696
729
|
## 20.1.48 (2022-04-12)
|
|
697
730
|
|
|
698
|
-
###
|
|
731
|
+
### GanttChart
|
|
699
732
|
|
|
700
733
|
#### Bug Fixes
|
|
701
734
|
|
|
@@ -705,7 +738,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
705
738
|
|
|
706
739
|
## 20.1.47 (2022-04-04)
|
|
707
740
|
|
|
708
|
-
###
|
|
741
|
+
### GanttChart
|
|
709
742
|
|
|
710
743
|
#### Bug Fixes
|
|
711
744
|
|
|
@@ -715,7 +748,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
715
748
|
|
|
716
749
|
## 19.4.56 (2022-03-15)
|
|
717
750
|
|
|
718
|
-
###
|
|
751
|
+
### GanttChart
|
|
719
752
|
|
|
720
753
|
#### Bug Fixes
|
|
721
754
|
|
|
@@ -729,7 +762,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
729
762
|
|
|
730
763
|
## 19.4.55 (2022-03-08)
|
|
731
764
|
|
|
732
|
-
###
|
|
765
|
+
### GanttChart
|
|
733
766
|
|
|
734
767
|
#### Bug Fixes
|
|
735
768
|
|
|
@@ -738,7 +771,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
738
771
|
|
|
739
772
|
## 19.4.54 (2022-03-01)
|
|
740
773
|
|
|
741
|
-
###
|
|
774
|
+
### GanttChart
|
|
742
775
|
|
|
743
776
|
#### Bug Fixes
|
|
744
777
|
|
|
@@ -747,7 +780,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
747
780
|
|
|
748
781
|
## 19.4.53 (2022-02-22)
|
|
749
782
|
|
|
750
|
-
###
|
|
783
|
+
### GanttChart
|
|
751
784
|
|
|
752
785
|
#### Bug Fixes
|
|
753
786
|
|
|
@@ -755,7 +788,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
755
788
|
|
|
756
789
|
## 19.4.52 (2022-02-15)
|
|
757
790
|
|
|
758
|
-
###
|
|
791
|
+
### GanttChart
|
|
759
792
|
|
|
760
793
|
#### Bug Fixes
|
|
761
794
|
|
|
@@ -764,7 +797,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
764
797
|
|
|
765
798
|
## 19.4.50 (2022-02-08)
|
|
766
799
|
|
|
767
|
-
###
|
|
800
|
+
### GanttChart
|
|
768
801
|
|
|
769
802
|
#### Bug Fixes
|
|
770
803
|
|
|
@@ -776,7 +809,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
776
809
|
|
|
777
810
|
## 19.4.47 (2022-01-25)
|
|
778
811
|
|
|
779
|
-
###
|
|
812
|
+
### GanttChart
|
|
780
813
|
|
|
781
814
|
#### Bug Fixes
|
|
782
815
|
|
|
@@ -790,7 +823,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
790
823
|
|
|
791
824
|
## 19.4.43 (2022-01-18)
|
|
792
825
|
|
|
793
|
-
###
|
|
826
|
+
### GanttChart
|
|
794
827
|
|
|
795
828
|
#### Bug Fixes
|
|
796
829
|
|
|
@@ -801,7 +834,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
801
834
|
|
|
802
835
|
## 19.4.42 (2022-01-11)
|
|
803
836
|
|
|
804
|
-
###
|
|
837
|
+
### GanttChart
|
|
805
838
|
|
|
806
839
|
#### Bug Fixes
|
|
807
840
|
|
|
@@ -810,7 +843,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
810
843
|
|
|
811
844
|
## 19.4.41 (2022-01-04)
|
|
812
845
|
|
|
813
|
-
###
|
|
846
|
+
### GanttChart
|
|
814
847
|
|
|
815
848
|
#### Bug Fixes
|
|
816
849
|
|
|
@@ -818,7 +851,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
818
851
|
- `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
|
|
819
852
|
- `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
|
|
820
853
|
|
|
821
|
-
###
|
|
854
|
+
### GanttChart
|
|
822
855
|
|
|
823
856
|
#### Bug Fixes
|
|
824
857
|
|
|
@@ -827,7 +860,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
827
860
|
|
|
828
861
|
## 19.4.40 (2021-12-28)
|
|
829
862
|
|
|
830
|
-
###
|
|
863
|
+
### GanttChart
|
|
831
864
|
|
|
832
865
|
#### Bug Fixes
|
|
833
866
|
|
|
@@ -835,7 +868,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
835
868
|
|
|
836
869
|
## 19.4.38 (2021-12-17)
|
|
837
870
|
|
|
838
|
-
###
|
|
871
|
+
### GanttChart
|
|
839
872
|
|
|
840
873
|
#### Bug Fixes
|
|
841
874
|
|
|
@@ -849,7 +882,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
849
882
|
|
|
850
883
|
## 19.3.56 (2021-12-02)
|
|
851
884
|
|
|
852
|
-
###
|
|
885
|
+
### GanttChart
|
|
853
886
|
|
|
854
887
|
#### Bug Fixes
|
|
855
888
|
|
|
@@ -858,7 +891,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
858
891
|
|
|
859
892
|
## 19.3.55 (2021-11-23)
|
|
860
893
|
|
|
861
|
-
###
|
|
894
|
+
### GanttChart
|
|
862
895
|
|
|
863
896
|
#### Bug Fixes
|
|
864
897
|
|
|
@@ -866,7 +899,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
866
899
|
|
|
867
900
|
## 19.3.53 (2021-11-12)
|
|
868
901
|
|
|
869
|
-
###
|
|
902
|
+
### GanttChart
|
|
870
903
|
|
|
871
904
|
#### Bug Fixes
|
|
872
905
|
|
|
@@ -874,7 +907,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
874
907
|
|
|
875
908
|
## 19.3.48 (2021-11-02)
|
|
876
909
|
|
|
877
|
-
###
|
|
910
|
+
### GanttChart
|
|
878
911
|
|
|
879
912
|
#### Bug Fixes
|
|
880
913
|
|
|
@@ -884,7 +917,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
884
917
|
|
|
885
918
|
## 19.3.47 (2021-10-26)
|
|
886
919
|
|
|
887
|
-
###
|
|
920
|
+
### GanttChart
|
|
888
921
|
|
|
889
922
|
#### Bug Fixes
|
|
890
923
|
|
|
@@ -899,7 +932,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
899
932
|
|
|
900
933
|
## 19.3.46 (2021-10-19)
|
|
901
934
|
|
|
902
|
-
###
|
|
935
|
+
### GanttChart
|
|
903
936
|
|
|
904
937
|
#### Bug Fixes
|
|
905
938
|
|
|
@@ -909,7 +942,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
909
942
|
|
|
910
943
|
## 19.3.45 (2021-10-12)
|
|
911
944
|
|
|
912
|
-
###
|
|
945
|
+
### GanttChart
|
|
913
946
|
|
|
914
947
|
#### Bug Fixes
|
|
915
948
|
|
|
@@ -919,7 +952,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
919
952
|
|
|
920
953
|
## 19.3.44 (2021-10-05)
|
|
921
954
|
|
|
922
|
-
###
|
|
955
|
+
### GanttChart
|
|
923
956
|
|
|
924
957
|
#### New Features
|
|
925
958
|
|
|
@@ -927,7 +960,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
927
960
|
|
|
928
961
|
## 19.2.62 (2021-09-14)
|
|
929
962
|
|
|
930
|
-
###
|
|
963
|
+
### GanttChart
|
|
931
964
|
|
|
932
965
|
#### Bug Fixes
|
|
933
966
|
|
|
@@ -936,7 +969,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
936
969
|
|
|
937
970
|
## 19.2.60 (2021-09-07)
|
|
938
971
|
|
|
939
|
-
###
|
|
972
|
+
### GanttChart
|
|
940
973
|
|
|
941
974
|
#### Bug Fixes
|
|
942
975
|
|
|
@@ -945,7 +978,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
945
978
|
|
|
946
979
|
## 19.2.59 (2021-08-31)
|
|
947
980
|
|
|
948
|
-
###
|
|
981
|
+
### GanttChart
|
|
949
982
|
|
|
950
983
|
#### Bug Fixes
|
|
951
984
|
|
|
@@ -953,7 +986,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
953
986
|
|
|
954
987
|
## 19.2.57 (2021-08-24)
|
|
955
988
|
|
|
956
|
-
###
|
|
989
|
+
### GanttChart
|
|
957
990
|
|
|
958
991
|
#### Bug Fixes
|
|
959
992
|
|
|
@@ -962,7 +995,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
962
995
|
|
|
963
996
|
## 19.2.56 (2021-08-17)
|
|
964
997
|
|
|
965
|
-
###
|
|
998
|
+
### GanttChart
|
|
966
999
|
|
|
967
1000
|
#### Bug Fixes
|
|
968
1001
|
|
|
@@ -971,7 +1004,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
971
1004
|
|
|
972
1005
|
## 19.2.55 (2021-08-11)
|
|
973
1006
|
|
|
974
|
-
###
|
|
1007
|
+
### GanttChart
|
|
975
1008
|
|
|
976
1009
|
#### Bug Fixes
|
|
977
1010
|
|
|
@@ -979,7 +1012,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
979
1012
|
|
|
980
1013
|
## 19.2.47 (2021-07-13)
|
|
981
1014
|
|
|
982
|
-
###
|
|
1015
|
+
### GanttChart
|
|
983
1016
|
|
|
984
1017
|
#### Bug Fixes
|
|
985
1018
|
|
|
@@ -989,7 +1022,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
989
1022
|
|
|
990
1023
|
## 19.2.46 (2021-07-06)
|
|
991
1024
|
|
|
992
|
-
###
|
|
1025
|
+
### GanttChart
|
|
993
1026
|
|
|
994
1027
|
#### Bug Fixes
|
|
995
1028
|
|
|
@@ -998,7 +1031,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
998
1031
|
|
|
999
1032
|
## 19.2.44 (2021-06-30)
|
|
1000
1033
|
|
|
1001
|
-
###
|
|
1034
|
+
### GanttChart
|
|
1002
1035
|
|
|
1003
1036
|
#### New Features
|
|
1004
1037
|
|
|
@@ -1006,7 +1039,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1006
1039
|
|
|
1007
1040
|
## 19.1.69 (2021-06-15)
|
|
1008
1041
|
|
|
1009
|
-
###
|
|
1042
|
+
### GanttChart
|
|
1010
1043
|
|
|
1011
1044
|
#### Bug Fixes
|
|
1012
1045
|
|
|
@@ -1015,7 +1048,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1015
1048
|
|
|
1016
1049
|
## 19.1.66 (2021-06-01)
|
|
1017
1050
|
|
|
1018
|
-
###
|
|
1051
|
+
### GanttChart
|
|
1019
1052
|
|
|
1020
1053
|
#### Bug Fixes
|
|
1021
1054
|
|
|
@@ -1026,7 +1059,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1026
1059
|
|
|
1027
1060
|
## 19.1.64 (2021-05-19)
|
|
1028
1061
|
|
|
1029
|
-
###
|
|
1062
|
+
### GanttChart
|
|
1030
1063
|
|
|
1031
1064
|
#### Bug Fixes
|
|
1032
1065
|
|
|
@@ -1037,7 +1070,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1037
1070
|
|
|
1038
1071
|
## 19.1.63 (2021-05-13)
|
|
1039
1072
|
|
|
1040
|
-
###
|
|
1073
|
+
### GanttChart
|
|
1041
1074
|
|
|
1042
1075
|
#### New Features
|
|
1043
1076
|
|
|
@@ -1053,7 +1086,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1053
1086
|
|
|
1054
1087
|
## 19.1.59 (2021-05-04)
|
|
1055
1088
|
|
|
1056
|
-
###
|
|
1089
|
+
### GanttChart
|
|
1057
1090
|
|
|
1058
1091
|
#### Bug Fixes
|
|
1059
1092
|
|
|
@@ -1063,7 +1096,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1063
1096
|
|
|
1064
1097
|
## 19.1.58 (2021-04-27)
|
|
1065
1098
|
|
|
1066
|
-
###
|
|
1099
|
+
### GanttChart
|
|
1067
1100
|
|
|
1068
1101
|
#### Bug Fixes
|
|
1069
1102
|
|
|
@@ -1074,7 +1107,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1074
1107
|
|
|
1075
1108
|
## 19.1.57 (2021-04-20)
|
|
1076
1109
|
|
|
1077
|
-
###
|
|
1110
|
+
### GanttChart
|
|
1078
1111
|
|
|
1079
1112
|
#### Bug Fixes
|
|
1080
1113
|
|
|
@@ -1082,7 +1115,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1082
1115
|
|
|
1083
1116
|
## 19.1.56 (2021-04-13)
|
|
1084
1117
|
|
|
1085
|
-
###
|
|
1118
|
+
### GanttChart
|
|
1086
1119
|
|
|
1087
1120
|
#### Bug Fixes
|
|
1088
1121
|
|
|
@@ -1090,7 +1123,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1090
1123
|
|
|
1091
1124
|
## 19.1.55 (2021-04-06)
|
|
1092
1125
|
|
|
1093
|
-
###
|
|
1126
|
+
### GanttChart
|
|
1094
1127
|
|
|
1095
1128
|
#### Bug Fixes
|
|
1096
1129
|
|
|
@@ -1098,7 +1131,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1098
1131
|
|
|
1099
1132
|
## 19.1.54 (2021-03-30)
|
|
1100
1133
|
|
|
1101
|
-
###
|
|
1134
|
+
### GanttChart
|
|
1102
1135
|
|
|
1103
1136
|
#### New Features
|
|
1104
1137
|
|
|
@@ -1107,7 +1140,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1107
1140
|
|
|
1108
1141
|
## 18.4.49 (2021-03-23)
|
|
1109
1142
|
|
|
1110
|
-
###
|
|
1143
|
+
### GanttChart
|
|
1111
1144
|
|
|
1112
1145
|
#### New Features
|
|
1113
1146
|
|
|
@@ -1119,7 +1152,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1119
1152
|
|
|
1120
1153
|
## 18.4.47 (2021-03-09)
|
|
1121
1154
|
|
|
1122
|
-
###
|
|
1155
|
+
### GanttChart
|
|
1123
1156
|
|
|
1124
1157
|
#### Bug Fixes
|
|
1125
1158
|
|
|
@@ -1127,7 +1160,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1127
1160
|
|
|
1128
1161
|
## 18.4.44 (2021-02-23)
|
|
1129
1162
|
|
|
1130
|
-
###
|
|
1163
|
+
### GanttChart
|
|
1131
1164
|
|
|
1132
1165
|
#### Bug Fixes
|
|
1133
1166
|
|
|
@@ -1135,14 +1168,14 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1135
1168
|
|
|
1136
1169
|
## 18.4.43 (2021-02-16)
|
|
1137
1170
|
|
|
1138
|
-
###
|
|
1171
|
+
### GanttChart
|
|
1139
1172
|
|
|
1140
1173
|
#### Bug Fixes
|
|
1141
1174
|
|
|
1142
1175
|
- `#306101` - Rendered milestone at default end time on taskbar editing.
|
|
1143
1176
|
- `#313819` - Highlighted bottom tier weekend header cell.
|
|
1144
1177
|
|
|
1145
|
-
###
|
|
1178
|
+
### GanttChart
|
|
1146
1179
|
|
|
1147
1180
|
#### Bug Fixes
|
|
1148
1181
|
|
|
@@ -1152,7 +1185,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1152
1185
|
|
|
1153
1186
|
## 18.4.41 (2021-02-02)
|
|
1154
1187
|
|
|
1155
|
-
###
|
|
1188
|
+
### GanttChart
|
|
1156
1189
|
|
|
1157
1190
|
#### Bug Fixes
|
|
1158
1191
|
|
|
@@ -1164,7 +1197,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1164
1197
|
|
|
1165
1198
|
## 18.4.39 (2021-01-28)
|
|
1166
1199
|
|
|
1167
|
-
###
|
|
1200
|
+
### GanttChart
|
|
1168
1201
|
|
|
1169
1202
|
#### New Features
|
|
1170
1203
|
|
|
@@ -1176,7 +1209,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1176
1209
|
|
|
1177
1210
|
## 18.4.35 (2021-01-19)
|
|
1178
1211
|
|
|
1179
|
-
###
|
|
1212
|
+
### GanttChart
|
|
1180
1213
|
|
|
1181
1214
|
#### Bug Fixes
|
|
1182
1215
|
|
|
@@ -1185,7 +1218,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1185
1218
|
|
|
1186
1219
|
## 18.4.33 (2021-01-05)
|
|
1187
1220
|
|
|
1188
|
-
###
|
|
1221
|
+
### GanttChart
|
|
1189
1222
|
|
|
1190
1223
|
#### Bug Fixes
|
|
1191
1224
|
|
|
@@ -1193,7 +1226,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1193
1226
|
|
|
1194
1227
|
## 18.4.32 (2020-12-29)
|
|
1195
1228
|
|
|
1196
|
-
###
|
|
1229
|
+
### GanttChart
|
|
1197
1230
|
|
|
1198
1231
|
#### Bug Fixes
|
|
1199
1232
|
|
|
@@ -1203,7 +1236,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1203
1236
|
|
|
1204
1237
|
## 18.4.31 (2020-12-22)
|
|
1205
1238
|
|
|
1206
|
-
###
|
|
1239
|
+
### GanttChart
|
|
1207
1240
|
|
|
1208
1241
|
#### Bug Fixes
|
|
1209
1242
|
|
|
@@ -1215,7 +1248,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1215
1248
|
|
|
1216
1249
|
## 18.4.30 (2020-12-17)
|
|
1217
1250
|
|
|
1218
|
-
###
|
|
1251
|
+
### GanttChart
|
|
1219
1252
|
|
|
1220
1253
|
#### New Features
|
|
1221
1254
|
|
|
@@ -1229,7 +1262,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1229
1262
|
|
|
1230
1263
|
## 18.3.52 (2020-12-01)
|
|
1231
1264
|
|
|
1232
|
-
###
|
|
1265
|
+
### GanttChart
|
|
1233
1266
|
|
|
1234
1267
|
#### Bug Fixes
|
|
1235
1268
|
|
|
@@ -1237,7 +1270,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1237
1270
|
|
|
1238
1271
|
## 18.3.51 (2020-11-24)
|
|
1239
1272
|
|
|
1240
|
-
###
|
|
1273
|
+
### GanttChart
|
|
1241
1274
|
|
|
1242
1275
|
#### Bug Fixes
|
|
1243
1276
|
|
|
@@ -1245,7 +1278,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1245
1278
|
|
|
1246
1279
|
## 18.3.50 (2020-11-17)
|
|
1247
1280
|
|
|
1248
|
-
###
|
|
1281
|
+
### GanttChart
|
|
1249
1282
|
|
|
1250
1283
|
#### Bug Fixes
|
|
1251
1284
|
|
|
@@ -1255,7 +1288,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1255
1288
|
|
|
1256
1289
|
## 18.3.48 (2020-11-11)
|
|
1257
1290
|
|
|
1258
|
-
###
|
|
1291
|
+
### GanttChart
|
|
1259
1292
|
|
|
1260
1293
|
#### Bug Fixes
|
|
1261
1294
|
|
|
@@ -1266,7 +1299,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1266
1299
|
|
|
1267
1300
|
## 18.3.47 (2020-11-05)
|
|
1268
1301
|
|
|
1269
|
-
###
|
|
1302
|
+
### GanttChart
|
|
1270
1303
|
|
|
1271
1304
|
#### New Features
|
|
1272
1305
|
|
|
@@ -1282,7 +1315,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1282
1315
|
|
|
1283
1316
|
## 18.3.42 (2020-10-20)
|
|
1284
1317
|
|
|
1285
|
-
###
|
|
1318
|
+
### GanttChart
|
|
1286
1319
|
|
|
1287
1320
|
#### Bug Fixes
|
|
1288
1321
|
|
|
@@ -1293,7 +1326,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1293
1326
|
|
|
1294
1327
|
## 18.3.35 (2020-10-01)
|
|
1295
1328
|
|
|
1296
|
-
###
|
|
1329
|
+
### GanttChart
|
|
1297
1330
|
|
|
1298
1331
|
#### Bug Fixes
|
|
1299
1332
|
|
|
@@ -1301,7 +1334,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1301
1334
|
|
|
1302
1335
|
## 18.2.59 (2020-09-21)
|
|
1303
1336
|
|
|
1304
|
-
###
|
|
1337
|
+
### GanttChart
|
|
1305
1338
|
|
|
1306
1339
|
#### New Features
|
|
1307
1340
|
|
|
@@ -1315,7 +1348,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1315
1348
|
|
|
1316
1349
|
## 18.2.57 (2020-09-08)
|
|
1317
1350
|
|
|
1318
|
-
###
|
|
1351
|
+
### GanttChart
|
|
1319
1352
|
|
|
1320
1353
|
#### Bug Fixes
|
|
1321
1354
|
|
|
@@ -1324,7 +1357,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1324
1357
|
|
|
1325
1358
|
## 18.2.56 (2020-09-01)
|
|
1326
1359
|
|
|
1327
|
-
###
|
|
1360
|
+
### GanttChart
|
|
1328
1361
|
|
|
1329
1362
|
#### Bug Fixes
|
|
1330
1363
|
|
|
@@ -1333,7 +1366,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1333
1366
|
|
|
1334
1367
|
## 18.2.55 (2020-08-25)
|
|
1335
1368
|
|
|
1336
|
-
###
|
|
1369
|
+
### GanttChart
|
|
1337
1370
|
|
|
1338
1371
|
#### Bug Fixes
|
|
1339
1372
|
|
|
@@ -1342,7 +1375,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1342
1375
|
|
|
1343
1376
|
## 18.2.48 (2020-08-04)
|
|
1344
1377
|
|
|
1345
|
-
###
|
|
1378
|
+
### GanttChart
|
|
1346
1379
|
|
|
1347
1380
|
#### New Features
|
|
1348
1381
|
|
|
@@ -1355,7 +1388,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1355
1388
|
|
|
1356
1389
|
## 18.2.47 (2020-07-28)
|
|
1357
1390
|
|
|
1358
|
-
###
|
|
1391
|
+
### GanttChart
|
|
1359
1392
|
|
|
1360
1393
|
#### Bug Fixes
|
|
1361
1394
|
|
|
@@ -1369,7 +1402,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1369
1402
|
|
|
1370
1403
|
## 18.2.46 (2020-07-21)
|
|
1371
1404
|
|
|
1372
|
-
###
|
|
1405
|
+
### GanttChart
|
|
1373
1406
|
|
|
1374
1407
|
#### Bug Fixes
|
|
1375
1408
|
|
|
@@ -1378,7 +1411,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1378
1411
|
|
|
1379
1412
|
## 18.2.45 (2020-07-14)
|
|
1380
1413
|
|
|
1381
|
-
###
|
|
1414
|
+
### GanttChart
|
|
1382
1415
|
|
|
1383
1416
|
#### Bug Fixes
|
|
1384
1417
|
|
|
@@ -1390,7 +1423,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1390
1423
|
|
|
1391
1424
|
## 18.2.44 (2020-07-07)
|
|
1392
1425
|
|
|
1393
|
-
###
|
|
1426
|
+
### GanttChart
|
|
1394
1427
|
|
|
1395
1428
|
#### New Features
|
|
1396
1429
|
|
|
@@ -1401,7 +1434,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1401
1434
|
|
|
1402
1435
|
## 18.1.59 (2020-06-23)
|
|
1403
1436
|
|
|
1404
|
-
###
|
|
1437
|
+
### GanttChart
|
|
1405
1438
|
|
|
1406
1439
|
#### Bug Fixes
|
|
1407
1440
|
|
|
@@ -1417,7 +1450,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1417
1450
|
|
|
1418
1451
|
## 18.1.57 (2020-06-16)
|
|
1419
1452
|
|
|
1420
|
-
###
|
|
1453
|
+
### GanttChart
|
|
1421
1454
|
|
|
1422
1455
|
#### New Features
|
|
1423
1456
|
|
|
@@ -1425,7 +1458,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1425
1458
|
|
|
1426
1459
|
## 18.1.55 (2020-06-02)
|
|
1427
1460
|
|
|
1428
|
-
###
|
|
1461
|
+
### GanttChart
|
|
1429
1462
|
|
|
1430
1463
|
#### Bug Fixes
|
|
1431
1464
|
|
|
@@ -1438,7 +1471,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1438
1471
|
|
|
1439
1472
|
## 18.1.54 (2020-05-26)
|
|
1440
1473
|
|
|
1441
|
-
###
|
|
1474
|
+
### GanttChart
|
|
1442
1475
|
|
|
1443
1476
|
#### Bug Fixes
|
|
1444
1477
|
|
|
@@ -1447,7 +1480,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1447
1480
|
|
|
1448
1481
|
## 18.1.53 (2020-05-19)
|
|
1449
1482
|
|
|
1450
|
-
###
|
|
1483
|
+
### GanttChart
|
|
1451
1484
|
|
|
1452
1485
|
#### Bug Fixes
|
|
1453
1486
|
|
|
@@ -1465,7 +1498,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1465
1498
|
|
|
1466
1499
|
## 18.1.52 (2020-05-13)
|
|
1467
1500
|
|
|
1468
|
-
###
|
|
1501
|
+
### GanttChart
|
|
1469
1502
|
|
|
1470
1503
|
#### Bug Fixes
|
|
1471
1504
|
|
|
@@ -1480,7 +1513,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1480
1513
|
|
|
1481
1514
|
## 18.1.48 (2020-05-05)
|
|
1482
1515
|
|
|
1483
|
-
###
|
|
1516
|
+
### GanttChart
|
|
1484
1517
|
|
|
1485
1518
|
#### Bug Fixes
|
|
1486
1519
|
|
|
@@ -1488,7 +1521,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1488
1521
|
|
|
1489
1522
|
## 18.1.46 (2020-04-28)
|
|
1490
1523
|
|
|
1491
|
-
###
|
|
1524
|
+
### GanttChart
|
|
1492
1525
|
|
|
1493
1526
|
#### Bug Fixes
|
|
1494
1527
|
|
|
@@ -1498,7 +1531,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1498
1531
|
|
|
1499
1532
|
## 18.1.45 (2020-04-21)
|
|
1500
1533
|
|
|
1501
|
-
###
|
|
1534
|
+
### GanttChart
|
|
1502
1535
|
|
|
1503
1536
|
#### Bug Fixes
|
|
1504
1537
|
|
|
@@ -1506,7 +1539,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1506
1539
|
|
|
1507
1540
|
## 18.1.44 (2020-04-14)
|
|
1508
1541
|
|
|
1509
|
-
###
|
|
1542
|
+
### GanttChart
|
|
1510
1543
|
|
|
1511
1544
|
#### Bug Fixes
|
|
1512
1545
|
|
|
@@ -1516,7 +1549,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1516
1549
|
|
|
1517
1550
|
## 18.1.43 (2020-04-07)
|
|
1518
1551
|
|
|
1519
|
-
###
|
|
1552
|
+
### GanttChart
|
|
1520
1553
|
|
|
1521
1554
|
#### New Features
|
|
1522
1555
|
|
|
@@ -1528,7 +1561,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1528
1561
|
|
|
1529
1562
|
## 18.1.42 (2020-04-01)
|
|
1530
1563
|
|
|
1531
|
-
###
|
|
1564
|
+
### GanttChart
|
|
1532
1565
|
|
|
1533
1566
|
#### Bug Fixes
|
|
1534
1567
|
|
|
@@ -1538,7 +1571,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1538
1571
|
|
|
1539
1572
|
## 18.1.36-beta (2020-03-19)
|
|
1540
1573
|
|
|
1541
|
-
###
|
|
1574
|
+
### GanttChart
|
|
1542
1575
|
|
|
1543
1576
|
#### New Features
|
|
1544
1577
|
|
|
@@ -1554,7 +1587,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1554
1587
|
|
|
1555
1588
|
## 17.4.46 (2020-01-30)
|
|
1556
1589
|
|
|
1557
|
-
###
|
|
1590
|
+
### GanttChart
|
|
1558
1591
|
|
|
1559
1592
|
#### New Features
|
|
1560
1593
|
|
|
@@ -1569,7 +1602,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1569
1602
|
|
|
1570
1603
|
## 17.4.44 (2021-01-21)
|
|
1571
1604
|
|
|
1572
|
-
###
|
|
1605
|
+
### GanttChart
|
|
1573
1606
|
|
|
1574
1607
|
#### Bug Fixes
|
|
1575
1608
|
|
|
@@ -1577,7 +1610,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1577
1610
|
|
|
1578
1611
|
## 17.4.41 (2020-01-07)
|
|
1579
1612
|
|
|
1580
|
-
###
|
|
1613
|
+
### GanttChart
|
|
1581
1614
|
|
|
1582
1615
|
#### New Features
|
|
1583
1616
|
|
|
@@ -1585,7 +1618,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1585
1618
|
|
|
1586
1619
|
## 17.4.40 (2019-12-24)
|
|
1587
1620
|
|
|
1588
|
-
###
|
|
1621
|
+
### GanttChart
|
|
1589
1622
|
|
|
1590
1623
|
#### Bug Fixes
|
|
1591
1624
|
|
|
@@ -1593,7 +1626,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1593
1626
|
|
|
1594
1627
|
## 17.4.39 (2019-12-17)
|
|
1595
1628
|
|
|
1596
|
-
###
|
|
1629
|
+
### GanttChart
|
|
1597
1630
|
|
|
1598
1631
|
#### Bug Fixes
|
|
1599
1632
|
|
|
@@ -1612,7 +1645,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1612
1645
|
|
|
1613
1646
|
## 17.3.30 (2019-12-03)
|
|
1614
1647
|
|
|
1615
|
-
###
|
|
1648
|
+
### GanttChart
|
|
1616
1649
|
|
|
1617
1650
|
#### Bug Fixes
|
|
1618
1651
|
|
|
@@ -1620,7 +1653,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1620
1653
|
|
|
1621
1654
|
## 17.3.29 (2019-11-26)
|
|
1622
1655
|
|
|
1623
|
-
###
|
|
1656
|
+
### GanttChart
|
|
1624
1657
|
|
|
1625
1658
|
#### Bug Fixes
|
|
1626
1659
|
|
|
@@ -1630,7 +1663,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1630
1663
|
|
|
1631
1664
|
## 17.3.28 (2019-11-19)
|
|
1632
1665
|
|
|
1633
|
-
###
|
|
1666
|
+
### GanttChart
|
|
1634
1667
|
|
|
1635
1668
|
#### Bug Fixes
|
|
1636
1669
|
|
|
@@ -1638,7 +1671,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1638
1671
|
|
|
1639
1672
|
## 17.3.19 (2019-10-22)
|
|
1640
1673
|
|
|
1641
|
-
###
|
|
1674
|
+
### GanttChart
|
|
1642
1675
|
|
|
1643
1676
|
#### Bug Fixes
|
|
1644
1677
|
|
|
@@ -1647,7 +1680,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1647
1680
|
|
|
1648
1681
|
## 17.3.14 (2019-10-03)
|
|
1649
1682
|
|
|
1650
|
-
###
|
|
1683
|
+
### GanttChart
|
|
1651
1684
|
|
|
1652
1685
|
#### Bug Fixes
|
|
1653
1686
|
|
|
@@ -1655,7 +1688,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1655
1688
|
|
|
1656
1689
|
## 17.3.9-beta (2019-09-20)
|
|
1657
1690
|
|
|
1658
|
-
###
|
|
1691
|
+
### GanttChart
|
|
1659
1692
|
|
|
1660
1693
|
#### Bug Fixes
|
|
1661
1694
|
|
|
@@ -1672,7 +1705,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1672
1705
|
|
|
1673
1706
|
## 17.2.46 (2019-08-22)
|
|
1674
1707
|
|
|
1675
|
-
###
|
|
1708
|
+
### GanttChart
|
|
1676
1709
|
|
|
1677
1710
|
#### Bug Fixes
|
|
1678
1711
|
|
|
@@ -1681,7 +1714,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1681
1714
|
|
|
1682
1715
|
## 17.2.41 (2019-08-14)
|
|
1683
1716
|
|
|
1684
|
-
###
|
|
1717
|
+
### GanttChart
|
|
1685
1718
|
|
|
1686
1719
|
#### Bug Fixes
|
|
1687
1720
|
|
|
@@ -1690,7 +1723,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1690
1723
|
|
|
1691
1724
|
## 17.2.40 (2019-08-06)
|
|
1692
1725
|
|
|
1693
|
-
###
|
|
1726
|
+
### GanttChart
|
|
1694
1727
|
|
|
1695
1728
|
#### Bug Fixes
|
|
1696
1729
|
|
|
@@ -1699,7 +1732,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1699
1732
|
|
|
1700
1733
|
## 17.2.36 (2019-07-24)
|
|
1701
1734
|
|
|
1702
|
-
###
|
|
1735
|
+
### GanttChart
|
|
1703
1736
|
|
|
1704
1737
|
#### Bug Fixes
|
|
1705
1738
|
|
|
@@ -1707,7 +1740,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1707
1740
|
|
|
1708
1741
|
## 17.2.28-beta (2019-06-27)
|
|
1709
1742
|
|
|
1710
|
-
###
|
|
1743
|
+
### GanttChart
|
|
1711
1744
|
|
|
1712
1745
|
#### Bug Fixes
|
|
1713
1746
|
|
|
@@ -1721,7 +1754,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1721
1754
|
|
|
1722
1755
|
## 17.1.49 (2019-05-29)
|
|
1723
1756
|
|
|
1724
|
-
###
|
|
1757
|
+
### GanttChart
|
|
1725
1758
|
|
|
1726
1759
|
#### Bug Fixes
|
|
1727
1760
|
|
|
@@ -1729,7 +1762,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1729
1762
|
|
|
1730
1763
|
## 17.1.47 (2019-05-14)
|
|
1731
1764
|
|
|
1732
|
-
###
|
|
1765
|
+
### GanttChart
|
|
1733
1766
|
|
|
1734
1767
|
#### Bug Fixes
|
|
1735
1768
|
|
|
@@ -1741,7 +1774,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1741
1774
|
|
|
1742
1775
|
## 17.1.43 (2019-04-30)
|
|
1743
1776
|
|
|
1744
|
-
###
|
|
1777
|
+
### GanttChart
|
|
1745
1778
|
|
|
1746
1779
|
#### Bug Fixes
|
|
1747
1780
|
|
|
@@ -1749,7 +1782,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1749
1782
|
|
|
1750
1783
|
## 17.1.40 (2019-04-09)
|
|
1751
1784
|
|
|
1752
|
-
###
|
|
1785
|
+
### GanttChart
|
|
1753
1786
|
|
|
1754
1787
|
#### Bug Fixes
|
|
1755
1788
|
|
|
@@ -1757,7 +1790,7 @@ By disabling this `API` we can improve load time performance by two time. Please
|
|
|
1757
1790
|
|
|
1758
1791
|
## 17.1.32-beta (2019-03-13)
|
|
1759
1792
|
|
|
1760
|
-
###
|
|
1793
|
+
### GanttChart
|
|
1761
1794
|
|
|
1762
1795
|
- **Data sources** – Bind hierarchical or self-referential data to Gantt chart with an array of JavaScript objects or DataManager.
|
|
1763
1796
|
- **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.
|