DayPilot.Scheduler.autoScrollDelay

The autoScrollDelay property (number) specifies the number of milliseconds the JavaScript Scheduler waits before it starts scrolling automatically when the cursor is near the viewport edge.

Declaration

DayPilot.Scheduler.autoScrollDelay

Default Value

100

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  autoScrollDelay: 250,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  autoScrollDelay: 250,
  // ...
};

React

<DayPilotScheduler
  autoScrollDelay={250}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :autoScrollDelay="250"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript