The scrollDelayCells property (number) specifies the debounce delay, in milliseconds, applied by the JavaScript Gantt Chart to cell rendering during scrolling.
When set to 0, cells are rendered synchronously.
DayPilot.Gantt.scrollDelayCells0JavaScript
const gantt = new DayPilot.Gantt("dp", {
scrollDelayCells: 50,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
scrollDelayCells: 50,
// ...
};React
<DayPilotGantt
scrollDelayCells={50}
{/* ... */}
/>Vue
<DayPilotGantt
:scrollDelayCells="50"
<!-- ... -->
/>Scrolling Performance [doc.daypilot.org]