The scrollDelayDynamic property (number) specifies a debouncing delay applied to onScroll invocations during scrolling when using dynamic event loading, in milliseconds.
DayPilot.Scheduler.scrollDelayDynamic500Use this property to control how often dynamic loading requests are triggered while the viewport is moving.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
scrollDelayDynamic: 200,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
scrollDelayDynamic: 200,
// ...
};React
<DayPilotScheduler
scrollDelayDynamic={200}
{/* ... */}
/>Vue
<DayPilotScheduler
:scrollDelayDynamic="200"
<!-- ... -->
/>Dynamic Event Loading [doc.daypilot.org]
Scrolling Performance [doc.daypilot.org]