The linkArrowSize property ("Auto" | number) specifies the size of the arrow at the end of Gantt task links, in pixels.
Available since version 2026.3.7023.
Declaration
DayPilot.Gantt.linkArrowSizePossible 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 task links.
You can override the global value for an individual link using the arrowSize property of DayPilot.Link.data.
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
linkArrowSize: 10,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
linkArrowSize: 10,
// ...
};React
<DayPilotGantt
linkArrowSize={10}
{/* ... */}
/>Vue
<DayPilotGantt
:linkArrowSize="10"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot