The cellBubble property (DayPilot.Bubble) specifies the bubble object used for cell tooltips.
DayPilot.Calendar.cellBubblenullJavaScript
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
})"
<!-- ... -->
/>Cell Bubble [doc.daypilot.org]