DayPilot.Gantt.rowHeaderHideIconEnabled

The rowHeaderHideIconEnabled property (boolean) enables the icon that lets users hide row headers in the JavaScript Gantt Chart.

Declaration

DayPilot.Gantt.rowHeaderHideIconEnabled

Possible Values

  • true - displays the row header hide icon.

  • false - hides the row header hide icon.

Default Value

false

Examples

JavaScript

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"
  <!-- ... -->
/>

See Also

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript