The visible property (boolean) sets the visibility of the Gantt Chart component.
Declaration
DayPilot.Gantt.visibleDefault Value
trueExamples
JavaScript
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot