Hello everyone,
I'm using the React Gantt component and need help implementing an automatic date update feature for linked tasks. Specifically, I have two tasks connected by an end-to-start link, defined as follows:
Link: { id: 1, source: 1, target: 2, type: 'e2s' }
Tasks:
{ id: 1, text: 'Task 1', start: ..., end: ... }
{ id: 2, text: 'Task 2', start: ..., end: ... }
When I adjust Task 1’s dates—say, moving it forward by one day—I want Task 2 to update its start and end dates accordingly. Is there a recommended approach or best practice within this library to achieve this behavior?
Any insights or suggestions would be greatly appreciated!