The rowMinHeight property (number) sets the minimum row height, in pixels, used by the Gantt Chart.
Declaration
DayPilot.Gantt.rowMinHeight
Notes
Use this property to keep task rows from shrinking below a fixed baseline height when you need more vertical space for the row content.
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowMinHeight: 30,
// ...
});
gantt.init();
Angular
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
rowMinHeight: 30,
// ...
};
React
<DayPilotGantt
rowMinHeight={30}
{/* ... */}
/>
Vue
<DayPilotGantt :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