The showToolTip property (boolean) specifies whether the browser tooltip generated using the HTML title attribute is active for events.
DayPilot.Month.showToolTiptrueIt is recommended to turn the tooltip off when DayPilot.Month.bubble is active.
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"
<!-- ... -->
/>