DayPilot.Calendar.showToolTip

The showToolTip property (boolean) enables the event tooltip shown by the JavaScript Calendar component.

Declaration

DayPilot.Calendar.showToolTip

Default Value

true

Notes

The tooltip is only active when DayPilot.Calendar.bubble is set to null.

Use the bubble feature when you need richer hover content than the built-in tooltip can provide.

Examples

JavaScript

const calendar = new DayPilot.Calendar("dp", {
  showToolTip: false,
  // ...
});
calendar.init();

Angular

<daypilot-calendar [config]="config"></daypilot-calendar>
config: DayPilot.CalendarConfig = {
  showToolTip: false,
  // ...
};

React

<DayPilotCalendar
  showToolTip={false}
  {/* ... */}
/>

Vue

<DayPilotCalendar
  :showToolTip="false"
  <!-- ... -->
/>

See Also

DayPilot.Calendar.bubble

Event ToolTip [doc.daypilot.org]

DayPilot.Calendar Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript