The eventHeight property (number) specifies the event box height in pixels in the monthly calendar.
DayPilot.Month.eventHeight25JavaScript
const month = new DayPilot.Month("dp", {
eventHeight: 30,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventHeight: 30,
// ...
};React
<DayPilotMonth
eventHeight={30}
{/* ... */}
/>Vue
<DayPilotMonth
:eventHeight="30"
<!-- ... -->
/>