The linkArrowSize property ("Auto" | number) specifies the size of the arrow at the end of Scheduler event links, in pixels.

Available since 2026.3.7034.

Declaration

DayPilot.Scheduler.linkArrowSize

Possible Values

  • "Auto" - uses the default arrow size.

  • number - sets the arrow size explicitly in pixels.

Default Value

"Auto"

Notes

Use this property to change the arrow size for all event links.

You can override the global value for an individual link using the arrowSize property of DayPilot.Link.data.

Examples

JavaScript

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

Angular

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

React

<DayPilotScheduler
  linkArrowSize={10}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :linkArrowSize="10"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

ProductLitePro
DayPilot for JavaScript