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.
DayPilot.Gantt.rowHeaderResizabletrue - allows row header resizing.
false - disables row header resizing.
trueJavaScript
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"
<!-- ... -->
/>