The columnBubble property (DayPilot.Bubble) specifies the bubble used to show additional details for calendar columns.
DayPilot.Calendar.columnBubblenullDayPilot Bubble object used for showing details for resources.
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()"
<!-- ... -->
/>Column Header Bubble [doc.daypilot.org]