The cellHeight property (number) specifies the height of the JavaScript Calendar cells (in pixels).
DayPilot.Calendar.cellHeight30JavaScript
const calendar = new DayPilot.Calendar("dp", {
cellHeight: 20,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
cellHeight: 20,
// ...
};React
<DayPilotCalendar
cellHeight={20}
{/* ... */}
/>Vue
<DayPilotCalendar
:cellHeight="20"
<!-- ... -->
/>Cell Height [doc.daypilot.org]