The scrollDelayCells property (number) specifies the debouncing delay applied by the JavaScript Scheduler to cell rendering during scrolling, in milliseconds.
Declaration
DayPilot.Scheduler.scrollDelayCellsDefault Value
0Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
scrollDelayCells: 50,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
scrollDelayCells: 50,
// ...
};React
<DayPilotScheduler
scrollDelayCells={50}
{/* ... */}
/>Vue
<DayPilotScheduler
:scrollDelayCells="50"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot