The timeHeaderTextWrappingEnabled property (boolean) enables text wrapping for time headers.
Declaration
DayPilot.Scheduler.timeHeaderTextWrappingEnabledDefault Value
falseNotes
Enable this option when time header labels need to wrap onto multiple lines instead of staying on a single line.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
timeHeaderTextWrappingEnabled: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
timeHeaderTextWrappingEnabled: true,
// ...
};React
<DayPilotScheduler
timeHeaderTextWrappingEnabled={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:timeHeaderTextWrappingEnabled="true"
<!-- ... -->
/>See Also
Time Header [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot