The cardMarginBottom property (number) specifies the space below each Kanban card, in pixels.
Declaration
DayPilot.Kanban.cardMarginBottomDefault Value
5
Examples
JavaScript
const kanban = new DayPilot.Kanban("dp", {
cardMarginBottom: 5,
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
cardMarginBottom: 5,
// ...
};React
<DayPilotKanban
cardMarginBottom={5}
{/* ... */}
/>Vue
<DayPilotKanban
:cardMarginBottom="5"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot