DayPilot.Scheduler.scrollDelayCells

The scrollDelayCells property (number) specifies the debouncing delay applied by the JavaScript Scheduler to cell rendering during scrolling, in milliseconds.

Declaration

DayPilot.Scheduler.scrollDelayCells

Default Value

0

Examples

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

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript