The taskGroupMode property (string) determines how parent task nodes calculate or use their start and end values.
Declaration
DayPilot.Gantt.taskGroupModePossible Values
"Auto"- calculates the parent task start and end from its children."Manual"- uses the parent taskstartandendvalues.
Default Value
"Auto"Examples
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"
<!-- ... -->
/>See Also
Gantt Task Group Mode [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot