The scrollDelayTasks property (number) specifies the debounce delay, in milliseconds, applied by the JavaScript Gantt Chart during task box rendering.
DayPilot.Gantt.scrollDelayTasks200JavaScript
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"
<!-- ... -->
/>Scrolling Performance [doc.daypilot.org]