The columnBubble property (DayPilot.Bubble) specifies the bubble used to show additional details for calendar columns.
Declaration
DayPilot.Calendar.columnBubbleDefault Value
nullNotes
DayPilot Bubble object used for showing details for resources.
Examples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
columnBubble: new DayPilot.Bubble(),
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
columnBubble: new DayPilot.Bubble(),
// ...
};React
<DayPilotCalendar
columnBubble={new DayPilot.Bubble()}
{/* ... */}
/>Vue
<DayPilotCalendar
:columnBubble="new DayPilot.Bubble()"
<!-- ... -->
/>See Also
Column Header Bubble [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot