The moveGroupChildren property (boolean) determines whether Gantt chart task groups can be moved along the time axis together with their children.
Available since version 2024.2.5930.
Declaration
DayPilot.Gantt.moveGroupChildrenPossible Values
true- moves task groups together with their child tasks.false- moves only the group task.
Default Value
trueExamples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
moveGroupChildren: false,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
moveGroupChildren: false,
// ...
};React
<DayPilotGantt
moveGroupChildren={false}
{/* ... */}
/>Vue
<DayPilotGantt
:moveGroupChildren="false"
<!-- ... -->
/>See Also
Group Moving [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot