The scrollDelayRows property (number) specifies the debouncing delay applied to progressive row header rendering during scrolling, in milliseconds.
DayPilot.Scheduler.scrollDelayRows0See Scrolling Performance for related Scheduler scrolling optimization options.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
scrollDelayRows: 50,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
scrollDelayRows: 50,
// ...
};React
<DayPilotScheduler
scrollDelayRows={50}
{/* ... */}
/>Vue
<DayPilotScheduler
:scrollDelayRows="50"
<!-- ... -->
/>Progressive Row Header Rendering [doc.daypilot.org]
Scrolling Performance [doc.daypilot.org]