The showToolTip property (boolean) enables the event tooltip shown by the JavaScript Calendar component.
DayPilot.Calendar.showToolTiptrueThe 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.
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"
<!-- ... -->
/>Event ToolTip [doc.daypilot.org]