The linkLayer property (string) specifies the position of links in the JavaScript Scheduler relative to events.
DayPilot.Scheduler.linkLayer"Above" - links are displayed above events.
"Below" - links are displayed below events.
"Above"JavaScript
const dp = new DayPilot.Scheduler("dp", {
linkLayer: "Below",
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
linkLayer: "Below",
// ...
};React
<DayPilotScheduler
linkLayer="Below"
{/* ... */}
/>Vue
<DayPilotScheduler
linkLayer="Below"
<!-- ... -->
/>Dependency Links in the Scheduler Component [doc.daypilot.org]