DayPilot.Scheduler.linkLayer

The linkLayer property (string) specifies the position of links in the JavaScript Scheduler relative to events.

Declaration

DayPilot.Scheduler.linkLayer

Possible Values

  • "Above" - links are displayed above events.

  • "Below" - links are displayed below events.

Default Value

"Above"

Examples

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"
  <!-- ... -->
/>

See Also

Dependency Links in the Scheduler Component [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript