The allDayEventHeight property (number) specifies the height of all-day events (in pixels) displayed by the Calendar component.
DayPilot.Calendar.allDayEventHeight34JavaScript
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"
<!-- ... -->
/>All-Day Events [doc.daypilot.org]