DayPilot.Calendar.cellBubble

The cellBubble property (DayPilot.Bubble) specifies the bubble object used for cell tooltips.

Declaration

DayPilot.Calendar.cellBubble

Default Value

null

Examples

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

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript