Hello,
I am working with the Syncfusion Gantt component in an Angular application. I need to recalculate task dates, durations, and dependency-based updates outside of the UI layer, for example inside a service or pure function.
The required behavior is to:
Accept a list of tasks
-
Accept a modified task ID and change set
-
Recalculate affected tasks (parents / children / predecessors)
-
Return the updated task list, without requiring a mounted Gantt instance in the DOM
Currently, recalculations such as updateRecordByID() and dependency propagation seem to work only when a Gantt instance is present in the DOM.
My question:
Is there any supported API, internal service, or standalone module in Syncfusion Gantt that allows task schedule recalculation without rendering the Gantt UI?