The messageHideAfter property (number) sets the delay before the message bar is automatically hidden, in milliseconds.
DayPilot.Month.messageHideAfter5000JavaScript
const dp = new DayPilot.Month("dp", {
messageHideAfter: 8000,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
messageHideAfter: 8000,
// ...
};React
<DayPilotMonth
messageHideAfter={8000}
{/* ... */}
/>Vue
<DayPilotMonth
:messageHideAfter="8000"
<!-- ... -->
/>Message Bar [doc.daypilot.org]