DayPilot.Scheduler.scrollDelayRows

The scrollDelayRows property (number) specifies the debouncing delay applied to progressive row header rendering during scrolling, in milliseconds.

Declaration

DayPilot.Scheduler.scrollDelayRows

Default Value

0

Notes

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript