DayPilot.Month.cellMarginBottom

The cellMarginBottom property (number) specifies the minimum space between the last event and the bottom of a day cell.

Declaration

DayPilot.Month.cellMarginBottom

Default Value

0

Notes

Increase this value to add more space below the last rendered event in each day cell.

Examples

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"
  <!-- ... -->
/>

See Also

DayPilot.Month Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript