DayPilot.Gantt.taskGroupMode

The taskGroupMode property (string) determines how parent task nodes calculate or use their start and end values.

Declaration

DayPilot.Gantt.taskGroupMode

Possible Values

  • "Auto" - calculates the parent task start and end from its children.

  • "Manual" - uses the parent task start and end values.

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]

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript