DayPilot.Gantt.allowUnscheduledTasks

The allowUnscheduledTasks property (boolean) allows tasks without start/end dates. They will be displayed as empty rows.

Available since 2026.1.6888.

Declaration

DayPilot.Gantt.allowUnscheduledTasks

Default Value

false

Examples

JavaScript

const gantt = new DayPilot.Gantt("dp", {
  allowUnscheduledTasks: true,
  // ...
});
gantt.init();

Angular

<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
  allowUnscheduledTasks: true,
  // ...
};

React

<DayPilotGantt
  allowUnscheduledTasks={true}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :allowUnscheduledTasks="true"
  <!-- ... -->
/>

See Also

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript