DayPilot.Scheduler.linkShape

The linkShape property (string) sets the shape of the links connecting events in the JavaScript Scheduler component.

Available since version 2023.3.5701.

Declaration

DayPilot.Scheduler.linkShape

Possible Values

  • "Curved" - displays links using curved connectors.

  • "RightAngled" - displays links using right-angled connectors.

Default Value

"Curved"

Examples

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

See Also

Link Shape [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript