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.autoScrollDelayDefault Value
100Examples
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot