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