The showToolTip property (boolean) enables the event tooltip shown by the JavaScript Calendar component.
Declaration
DayPilot.Calendar.showToolTipDefault Value
trueNotes
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
Event ToolTip [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot