The cellHeight property (number) specifies the height of the JavaScript monthly calendar cells in pixels.
DayPilot.Month.cellHeight100This is the minimum cell height. The cell will be extended automatically if more space is needed to display events.
JavaScript
const month = new DayPilot.Month("dp", {
cellHeight: 80,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
cellHeight: 80,
// ...
};React
<DayPilotMonth
cellHeight={80}
{/* ... */}
/>Vue
<DayPilotMonth
:cellHeight="80"
<!-- ... -->
/>