Replies: 3 comments 4 replies
-
In fact, task A should end at 14:59:59.999 ( There is an option that disables moving tasks to the next line, but I do not recommend this approach - it is better to set the correct times. |
Beta Was this translation helpful? Give feedback.
-
To make it easier for yourself, just subtract one millisecond from the end time, i.e. 15:00:00.000, i.e. {
id: '1',
label: 'MO240523-001',
rowId: '3',
time: {
start: GSTC.api.date('2024-05-27 10:00:00').valueOf(),
end: GSTC.api.date('2024-05-27 15:00:00').valueOf() - 1 // subtract that one ms here
}
}, |
Beta Was this translation helpful? Give feedback.
-
Use the config chart spacing you can use config = {
chart: {
spacing: 0
}
}; |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
At present, my items are as follows. I hope that when the end time of project A overlaps with the start time of project B, it can automatically connect to another line instead of displaying it up and down. For example, the end time of A is 15:00:00 on May 27, 2024, The start time of B is 15:00:00 on May 27, 2024, and they are currently displayed up and down. I would like to work with AA's end time at 15:00:00 on May 27, 2024, The start time of B is the same as 15:00:01 on May 27, 2024. It is displayed in front and back splicing. How should it be set?
Beta Was this translation helpful? Give feedback.
All reactions