The cellMarginBottom property (number) specifies the minimum space between the last event and the bottom of a day cell.
DayPilot.Month.cellMarginBottom0Increase this value to add more space below the last rendered event in each day cell.
JavaScript
const month = new DayPilot.Month("dp", {
cellMarginBottom: 20,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
cellMarginBottom: 20,
// ...
};React
<DayPilotMonth
cellMarginBottom={20}
{/* ... */}
/>Vue
<DayPilotMonth
:cellMarginBottom="20"
<!-- ... -->
/>