The linkBubble property (DayPilot.Bubble) specifies the bubble used for showing link details in the JavaScript Scheduler.
Declaration
DayPilot.Scheduler.linkBubbleDefault Value
nullExamples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
linkBubble: new DayPilot.Bubble(),
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
linkBubble: new DayPilot.Bubble(),
// ...
};React
<DayPilotScheduler
linkBubble={bubble}
{/* ... */}
/>const bubble = new DayPilot.Bubble();Vue
<DayPilotScheduler
:linkBubble="bubble"
<!-- ... -->
/>const bubble = new DayPilot.Bubble();See Also
DayPilot.Scheduler.resourceBubble
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot