The taskGroupMode property (string) determines how parent task nodes calculate or use their start and end values.
DayPilot.Gantt.taskGroupMode"Auto" - calculates the parent task start and end from its children.
"Manual" - uses the parent task start and end values.
"Auto"JavaScript
const gantt = new DayPilot.Gantt("dp", {
taskGroupMode: "Manual",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
taskGroupMode: "Manual",
// ...
};React
<DayPilotGantt
taskGroupMode="Manual"
{/* ... */}
/>Vue
<DayPilotGantt
taskGroupMode="Manual"
<!-- ... -->
/>Gantt Task Group Mode [doc.daypilot.org]