DayPilot.Scheduler.overrideWheelScrolling

The overrideWheelScrolling property (boolean) lets you override the default wheel scrolling handler in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.overrideWheelScrolling

Default Value

false

Notes

Examples

JavaScript

const scheduler = new DayPilot.Scheduler("dp", {
  overrideWheelScrolling: true,
  // ...
});
scheduler.init();

Angular

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

React

<DayPilotScheduler
  overrideWheelScrolling={true}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :overrideWheelScrolling="true"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.scrollStep

DayPilot.Scheduler.eventHeight

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript