The linkDotSize property (number) specifies the diameter of a dot representing an event link. The JavaScript Scheduler displays a dot in place of a full line with an arrow when linking two adjacent events of the "FinishToStart" type.
DayPilot.Scheduler.linkDotSize10The dot is used instead of a full dependency line when two adjacent events are connected using a "FinishToStart" link.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
linkDotSize: 8,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
linkDotSize: 8,
// ...
};React
<DayPilotScheduler
linkDotSize={8}
{/* ... */}
/>Vue
<DayPilotScheduler
:linkDotSize="8"
<!-- ... -->
/>Dependency Links in the Scheduler Component [doc.daypilot.org]