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.
DayPilot.Scheduler.linkPointSize10The link binding points become visible on event hover during drag and drop link creation.
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"
<!-- ... -->
/>Link Creation (Drag and Drop) [doc.daypilot.org]