The visible property (boolean) sets the visibility of the Gantt Chart component.
DayPilot.Gantt.visibletrueJavaScript
const gantt = new DayPilot.Gantt("dp", {
visible: false,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
visible: false,
// ...
};React
<DayPilotGantt
visible={false}
{/* ... */}
/>Vue
<DayPilotGantt
:visible="false"
<!-- ... -->
/>