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.
Declaration
DayPilot.Kanban.cardHeightDefault Value
60Examples
JavaScript
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot