The scrollDelayRows property (number) specifies the debouncing delay applied to progressive row header rendering during scrolling, in milliseconds.
Declaration
DayPilot.Scheduler.scrollDelayRowsDefault Value
0Notes
See Scrolling Performance for related Scheduler scrolling optimization options.
Examples
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"
<!-- ... -->
/>See Also
Progressive Row Header Rendering [doc.daypilot.org]
Scrolling Performance [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot