DayPilot.Scheduler.linkPointSize

The linkPointSize property (number) specifies the diameter of the link binding points (in pixels) at the start and end of events. The JavaScript Scheduler displays these points upon event hover when creating links using drag and drop.

Declaration

DayPilot.Scheduler.linkPointSize

Default Value

10

Notes

The link binding points become visible on event hover during drag and drop link creation.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  linkPointSize: 5,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  linkPointSize: 5,
  // ...
};

React

<DayPilotScheduler
  linkPointSize={5}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :linkPointSize="5"
  <!-- ... -->
/>

See Also

Link Creation (Drag and Drop) [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript