The rowMarginBottom property (number) sets the height of the free space below each task box in a row, in pixels.
Declaration
DayPilot.Gantt.rowMarginBottomDefault Value
4Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowMarginBottom: 5,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowMarginBottom: 5,
// ...
};React
<DayPilotGantt
rowMarginBottom={5}
{/* ... */}
/>Vue
<DayPilotGantt
:rowMarginBottom="5"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot