DayPilot.Gantt.rowHeaderResizable

The rowHeaderResizable property (boolean) enables or disables drag-and-drop resizing of row headers in the JavaScript Gantt Chart.

This property applies only when row header scrolling is enabled.

Available since 2025.4.6665.

Declaration

DayPilot.Gantt.rowHeaderResizable

Possible Values

  • true - allows row header resizing.

  • false - disables row header resizing.

Default Value

true

Examples

JavaScript

const gantt = new DayPilot.Gantt("dp", {
  rowHeaderScrolling: true,
  rowHeaderResizable: false,
  // ...
});
gantt.init();

Angular

<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
  rowHeaderScrolling: true,
  rowHeaderResizable: false,
  // ...
};

React

<DayPilotGantt
  rowHeaderScrolling={true}
  rowHeaderResizable={false}
  {/* ... */}
/>

Vue

<DayPilotGantt
  :rowHeaderScrolling="true"
  :rowHeaderResizable="false"
  <!-- ... -->
/>

See Also

DayPilot.Gantt.rowHeaderScrolling

DayPilot.Gantt Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript