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