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