DayPilot.Gantt.moveGroupChildren

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.moveGroupChildren

Possible Values

  • true - moves task groups together with their child tasks.

  • false - moves only the group task.

Default Value

true

Examples

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]

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript