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