The floatingTimeHeaders property (boolean) enables floating time headers in the JavaScript Scheduler.
Declaration
DayPilot.Scheduler.floatingTimeHeadersDefault Value
trueNotes
When enabled, the Scheduler displays a special overlay div over time header cells that are partially out of the viewport.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
floatingTimeHeaders: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
floatingTimeHeaders: false,
// ...
};React
<DayPilotScheduler
floatingTimeHeaders={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:floatingTimeHeaders="false"
<!-- ... -->
/>See Also
Floating Time Headers [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot