DayPilot.Scheduler.scrollDelayEvents

The scrollDelayEvents property (number) specifies the debouncing delay applied by the JavaScript Scheduler during event rendering, in milliseconds.

Declaration

DayPilot.Scheduler.scrollDelayEvents

Default Value

200

Examples

JavaScript

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"
  <!-- ... -->
/>

See Also

Scrolling Performance [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript