The linkBottomMargin property (number) specifies the distance, in pixels, between the bottom of a task box and the task-link connection point.
DayPilot.Gantt.linkBottomMargin10JavaScript
const gantt = new DayPilot.Gantt("dp", {
linkBottomMargin: 15,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
linkBottomMargin: 15,
// ...
};React
<DayPilotGantt
linkBottomMargin={15}
{/* ... */}
/>Vue
<DayPilotGantt
:linkBottomMargin="15"
<!-- ... -->
/>