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.rowHeaderResizablePossible Values
true- allows row header resizing.false- disables row header resizing.
Default Value
trueExamples
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot