The rowMinHeight property (number) sets the minimum row or swim lane height in pixels.

Declaration

DayPilot.Kanban.rowMinHeight

Notes

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

Availability

Availability of this API item in DayPilot editions:

ProductLitePro
DayPilot for JavaScript