The eventHoverHandling property (string) specifies the default action when the user hovers over an event in the monthly calendar component.
DayPilot.Month.eventHoverHandling"Disabled" - no built-in hover action is performed.
"Bubble" - shows the built-in event hover bubble.
"Bubble"The default "Bubble" value keeps the standard hover-based event details behavior enabled.
JavaScript
const month = new DayPilot.Month("dp", {
eventHoverHandling: "Disabled",
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
eventHoverHandling: "Disabled",
// ...
};React
<DayPilotMonth
eventHoverHandling="Disabled"
{/* ... */}
/>Vue
<DayPilotMonth
eventHoverHandling="Disabled"
<!-- ... -->
/>