DayPilot.Gantt.scrollDelayTasks

The scrollDelayTasks property (number) specifies the debounce delay, in milliseconds, applied by the JavaScript Gantt Chart during task box rendering.

Declaration

DayPilot.Gantt.scrollDelayTasks

Default Value

200

Examples

JavaScript

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

Angular

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

React

<DayPilotGantt
  scrollDelayTasks={100}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :scrollDelayTasks="100"
  <!-- ... -->
/>

See Also

Scrolling Performance [doc.daypilot.org]

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript