The floatingEvents property (boolean) enables floating event text during scrolling in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.floatingEventsDefault Value
trueNotes
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]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot