DayPilot.Scheduler.linkBubble

The linkBubble property (DayPilot.Bubble) specifies the bubble used for showing link details in the JavaScript Scheduler.

Declaration

DayPilot.Scheduler.linkBubble

Default Value

null

Examples

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.bubble

DayPilot.Scheduler.cellBubble

DayPilot.Scheduler.resourceBubble

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript