The hideUntilInit property (boolean) controls whether the Gantt control is hidden during initialization.
Declaration
DayPilot.Gantt.hideUntilInitDefault Value
falseNotes
If set to
true, the control is made visible upon the first callback (Initevent).This property applies to ASP.NET MVC Gantt Chart and Java Gantt Chart.
Examples
JavaScript
const gantt = new DayPilot.Gantt("dp", {
hideUntilInit: true,
// ...
});
gantt.init();
DayPilot