The linkBottomMargin property (number) specifies the distance of the event link start from the bottom of the event box (in pixels).
Declaration
DayPilot.Scheduler.linkBottomMarginDefault Value
10Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
linkBottomMargin: 15,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
linkBottomMargin: 15,
// ...
};React
<DayPilotScheduler
linkBottomMargin={15}
{/* ... */}
/>Vue
<DayPilotScheduler
:linkBottomMargin="15"
<!-- ... -->
/>See Also
Event Links [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot