The resourceBubble property (DayPilot.Bubble) specifies the bubble object used to show resource details on hover.
DayPilot.Scheduler.resourceBubblenullAssign a DayPilot.Bubble instance to display custom resource hover details.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
resourceBubble: new DayPilot.Bubble(),
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
resourceBubble: new DayPilot.Bubble(),
// ...
};React
<DayPilotScheduler
resourceBubble={resourceBubble}
{/* ... */}
/>const resourceBubble = new DayPilot.Bubble();Vue
<DayPilotScheduler
:resourceBubble="resourceBubble"
<!-- ... -->
/>const resourceBubble = new DayPilot.Bubble();