The rowMinHeight property (number) sets the minimum row or swim lane height in pixels.
Declaration
DayPilot.Kanban.rowMinHeightNotes
Use this property to reserve vertical space for swim lanes that contain only a small number of cards.
Examples
JavaScript
const kanban = new DayPilot.Kanban("dp", {
rowMinHeight: 30,
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
rowMinHeight: 30,
// ...
};React
<DayPilotKanban
rowMinHeight={30}
{/* ... */}
/>Vue
<DayPilotKanban
:rowMinHeight="30"
<!-- ... -->
/>See Also
Row Height [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot