DayPilot.Scheduler.resourceBubble

The resourceBubble property (DayPilot.Bubble) specifies the bubble object used to show resource details on hover.

Declaration

DayPilot.Scheduler.resourceBubble

Default Value

null

Notes

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.Bubble Class

DayPilot.Scheduler.bubble

DayPilot.Scheduler.cellBubble

DayPilot.Scheduler.groupBubble

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript