The cellMarginBottom property (number) sets the bottom margin of a Kanban cell in pixels.
DayPilot.Kanban.cellMarginBottom4Increase this value to add more vertical spacing below each cell.
JavaScript
const kanban = new DayPilot.Kanban("dp", {
cellMarginBottom: 8,
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
cellMarginBottom: 8,
// ...
};React
<DayPilotKanban
cellMarginBottom={8}
{/* ... */}
/>Vue
<DayPilotKanban
:cellMarginBottom="8"
<!-- ... -->
/>