The rowHeaderHideIconEnabled property (boolean) enables the icon that lets users hide row headers in the JavaScript Gantt Chart.
DayPilot.Gantt.rowHeaderHideIconEnabledtrue - displays the row header hide icon.
false - hides the row header hide icon.
falseJavaScript
const gantt = new DayPilot.Gantt("dp", {
rowHeaderHideIconEnabled: true,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowHeaderHideIconEnabled: true,
// ...
};React
<DayPilotGantt
rowHeaderHideIconEnabled={true}
{/* ... */}
/>Vue
<DayPilotGantt
:rowHeaderHideIconEnabled="true"
<!-- ... -->
/>