The scrollDelayEvents property (number) specifies the debouncing delay applied by the JavaScript Scheduler during event rendering, in milliseconds.
DayPilot.Scheduler.scrollDelayEvents200JavaScript
const dp = new DayPilot.Scheduler("dp", {
scrollDelayEvents: 100,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
scrollDelayEvents: 100,
// ...
};React
<DayPilotScheduler
scrollDelayEvents={100}
{/* ... */}
/>Vue
<DayPilotScheduler
:scrollDelayEvents="100"
<!-- ... -->
/>Scrolling Performance [doc.daypilot.org]
Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot