It would be useful if the Gantt component supported task dependencies, allowing users to visually connect one task to another with dependency lines/arrows.
For example:
The connector could represent relationships such as:
Finish-to-Start (FS)
Start-to-Start (SS)
Finish-to-Finish (FF)
Start-to-Finish (SF)
Proposed API
Something along the lines of:
dependencies: [
{
from: "task-1",
to: "task-2",
type: "finish-to-start",
},
]
Ideally, the connectors would also update automatically when tasks are moved or resized.
Why this would be useful
Task dependencies are a common requirement for Gantt charts, especially for project planning and scheduling. Having native support for connectors would make the component significantly more useful for project-management use cases.
It would also be great if users could optionally create dependencies interactively by dragging from one task to another.
Thanks for considering this feature!
It would be useful if the Gantt component supported task dependencies, allowing users to visually connect one task to another with dependency lines/arrows.
For example:
The connector could represent relationships such as:
Finish-to-Start (FS)
Start-to-Start (SS)
Finish-to-Finish (FF)
Start-to-Finish (SF)
Proposed API
Something along the lines of:
dependencies: [
{
from: "task-1",
to: "task-2",
type: "finish-to-start",
},
]
Ideally, the connectors would also update automatically when tasks are moved or resized.
Why this would be useful
Task dependencies are a common requirement for Gantt charts, especially for project planning and scheduling. Having native support for connectors would make the component significantly more useful for project-management use cases.
It would also be great if users could optionally create dependencies interactively by dragging from one task to another.
Thanks for considering this feature!