The scrollDelayFloats property (number) specifies the debouncing delay applied by the JavaScript Scheduler when updating floating events and floating time headers during scrolling, in milliseconds.
DayPilot.Scheduler.scrollDelayFloats0JavaScript
const dp = new DayPilot.Scheduler("dp", {
scrollDelayFloats: 100,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
scrollDelayFloats: 100,
// ...
};React
<DayPilotScheduler
scrollDelayFloats={100}
{/* ... */}
/>Vue
<DayPilotScheduler
:scrollDelayFloats="100"
<!-- ... -->
/>Floating Events [doc.daypilot.org]
Floating Time Headers [doc.daypilot.org]
Scrolling Performance [doc.daypilot.org]