The showToolTip property (boolean) specifies whether the browser tooltip generated using the HTML title attribute is active for events.
Declaration
DayPilot.Month.showToolTipDefault Value
trueNotes
It is recommended to turn the tooltip off when DayPilot.Month.bubble is active.
Examples
JavaScript
const dp = new DayPilot.Month("dp", {
showToolTip: false,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
showToolTip: false,
// ...
};React
<DayPilotMonth
showToolTip={false}
{/* ... */}
/>Vue
<DayPilotMonth
:showToolTip="false"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot