The allDayEventHeight property (number) specifies the height of all-day events (in pixels) displayed by the Calendar component.
Declaration
DayPilot.Calendar.allDayEventHeightDefault Value
34Examples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
allDayEventHeight: 50,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
allDayEventHeight: 50,
// ...
};React
<DayPilotCalendar
allDayEventHeight={50}
{/* ... */}
/>Vue
<DayPilotCalendar
:allDayEventHeight="50"
<!-- ... -->
/>See Also
All-Day Events [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot