DayPilot.Scheduler.linkDotSize

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.

Declaration

DayPilot.Scheduler.linkDotSize

Default Value

10

Notes

The dot is used instead of a full dependency line when two adjacent events are connected using a "FinishToStart" link.

Examples

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

See Also

Dependency Links in the Scheduler Component [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript