DayPilot.Scheduler.timeHeaderTextWrappingEnabled

The timeHeaderTextWrappingEnabled property (boolean) enables text wrapping for time headers.

Declaration

DayPilot.Scheduler.timeHeaderTextWrappingEnabled

Default Value

false

Notes

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript