The linkShape property sets the shape of links connecting tasks in the JavaScript Gantt Chart component.
Available since version 2025.1.6417.
DayPilot.Gantt.linkShape"Curved" - curved link lines.
"RightAngled" - right-angled link lines.
"Curved"JavaScript
const gantt = new DayPilot.Gantt("dp", {
linkShape: "RightAngled",
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
linkShape: "RightAngled",
// ...
};React
<DayPilotGantt
linkShape={"RightAngled"}
{/* ... */}
/>Vue
<DayPilotGantt
linkShape="RightAngled"
<!-- ... -->
/>Link Shape [doc.daypilot.org]