The rowMarginBottom property (number) sets the height of the free space below each task box in a row, in pixels.
DayPilot.Gantt.rowMarginBottom4JavaScript
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"
<!-- ... -->
/>