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.
Declaration
DayPilot.Gantt.scrollDelayCellsDefault Value
0Examples
JavaScript
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"
<!-- ... -->
/>See Also
Scrolling Performance [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot