The headerHeight property (number) specifies the height of the day-of-week header in pixels.
DayPilot.Month.headerHeight30JavaScript
const dp = new DayPilot.Month("dp", {
headerHeight: 40,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
headerHeight: 40,
// ...
};React
<DayPilotMonth
headerHeight={40}
{/* ... */}
/>Vue
<DayPilotMonth
:headerHeight="40"
<!-- ... -->
/>