The showToolTip property (boolean) controls whether the browser tooltip based on the HTML title attribute is shown for Scheduler events.
DayPilot.Scheduler.showToolTiptrueThis tooltip uses the standard HTML title attribute.
It is recommended to disable this property when DayPilot.Scheduler.bubble is active.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
showToolTip: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
showToolTip: false,
// ...
};React
<DayPilotScheduler
showToolTip={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:showToolTip="false"
<!-- ... -->
/>