The linkShape property (string) sets the shape of the links connecting events in the JavaScript Scheduler component.
Available since version 2023.3.5701.
DayPilot.Scheduler.linkShape"Curved" - displays links using curved connectors.
"RightAngled" - displays links using right-angled connectors.
"Curved"JavaScript
const dp = new DayPilot.Scheduler("dp", {
linkShape: "RightAngled",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
linkShape: "RightAngled",
// ...
};React
<DayPilotScheduler
linkShape="RightAngled"
{/* ... */}
/>Vue
<DayPilotScheduler
linkShape="RightAngled"
<!-- ... -->
/>Link Shape [doc.daypilot.org]