The resourceBubble property (DayPilot.Bubble) specifies the bubble object used to show resource details on hover.
Declaration
DayPilot.Scheduler.resourceBubbleDefault Value
nullNotes
Assign a DayPilot.Bubble instance to display custom resource hover details.
Examples
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();See Also
DayPilot.Scheduler.groupBubble
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot