The scrollDelayTasks property (number) specifies the debounce delay, in milliseconds, applied by the JavaScript Gantt Chart during task box rendering.
Declaration
DayPilot.Gantt.scrollDelayTasksDefault Value
200Examples
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]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot