DayPilot.Calendar.allDayEventTextWrappingEnabled

The allDayEventTextWrappingEnabled property (boolean) enables text wrapping for all-day events in the JavaScript Calendar component.

When the value is set to false, the Calendar adds white-space: nowrap style to the all-day event DOM element.

Available since version 2022.3.5416.

Default Value

false

Example

const calendar = new DayPilot.Calendar("calendar", {
  allDayEventTextWrappingEnabled: true,
  // ...
});
calendar.init();