The cellBubble property (DayPilot.Bubble) specifies the bubble object used for cell tooltips.
Declaration
DayPilot.Calendar.cellBubbleDefault Value
nullExamples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
cellBubble: new DayPilot.Bubble({
animated: false
}),
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
cellBubble: new DayPilot.Bubble({
animated: false
}),
// ...
};React
<DayPilotCalendar
cellBubble={new DayPilot.Bubble({
animated: false
})}
{/* ... */}
/>Vue
<DayPilotCalendar
:cellBubble="new DayPilot.Bubble({
animated: false
})"
<!-- ... -->
/>See Also
Cell Bubble [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot