The messageHideAfter property (number) sets the delay, in milliseconds, before the message bar is hidden automatically.
Declaration
DayPilot.Gantt.messageHideAfterDefault Value
5000Notes
By default, the message bar is hidden after 5 seconds.
The message bar is hidden immediately if the user hovers over it or if a drag and drop operation is started.
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
messageHideAfter: 10000,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
messageHideAfter: 10000,
// ...
};React
<DayPilotGantt
messageHideAfter={10000}
{/* ... */}
/>Vue
<DayPilotGantt
:messageHideAfter="10000"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot