The cardHeight property (number) sets a card height in the Kanban component (in pixels).
This value is only used when cardAutoHeight is set to false.
DayPilot.Kanban.cardHeight60JavaScript
const kanban = new DayPilot.Kanban("dp", {
cardHeight: 100,
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
cardHeight: 100,
// ...
};React
<DayPilotKanban
cardHeight={100}
{/* ... */}
/>Vue
<DayPilotKanban
:cardHeight="100"
<!-- ... -->
/>