The linkBubble property (DayPilot.Bubble) specifies the bubble used for showing link details in the JavaScript Scheduler.
DayPilot.Scheduler.linkBubblenullJavaScript
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();