DayPilot.Scheduler.floatingEvents

The floatingEvents property (boolean) enables floating event text during scrolling in the JavaScript Scheduler component.

Declaration

DayPilot.Scheduler.floatingEvents

Default Value

true

Notes

Set this property to false to disable the floating event text feature.

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  floatingEvents={false}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :floatingEvents="false"
  <!-- ... -->
/>

See Also

Floating Events [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript