The rowMinHeight property (number) sets the minimum row height, in pixels, used by the Gantt Chart.
DayPilot.Gantt.rowMinHeight
Use this property to keep task rows from shrinking below a fixed baseline height when you need more vertical space for the row content.
const gantt = new DayPilot.Gantt("dp", {
rowMinHeight: 30,
// ...
});
gantt.init();
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
rowMinHeight: 30,
// ...
};
<DayPilotGantt
rowMinHeight={30}
{/* ... */}
/>
<DayPilotGantt :rowMinHeight="30" <!-- ... --> />
Row Height [doc.daypilot.org]