The linkBottomMargin property (number) specifies the distance, in pixels, between the bottom of a task box and the task-link connection point.
Declaration
DayPilot.Gantt.linkBottomMarginDefault Value
10Examples
JavaScript
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot