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.
DayPilot.Gantt.moveGroupChildrentrue - moves task groups together with their child tasks.
false - moves only the group task.
trueJavaScript
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"
<!-- ... -->
/>Group Moving [doc.daypilot.org]