The eventTextWrappingEnabled property (boolean) enables wrapping of event text onto multiple lines.
Declaration
DayPilot.Queue.eventTextWrappingEnabledDefault Value
falseExamples
JavaScript
const queue = new DayPilot.Queue("dp", {
eventTextWrappingEnabled: true,
// ...
});
queue.init();Angular
<daypilot-queue [config]="config"></daypilot-queue>config: DayPilot.QueueConfig = {
eventTextWrappingEnabled: true,
// ...
};React
<DayPilotQueue
eventTextWrappingEnabled={true}
{/* ... */}
/>Vue
<DayPilotQueue
:eventTextWrappingEnabled="true"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot