The rowHeaderSplitterWidth property (number) specifies the width of the active vertical splitter between row headers and the JavaScript Gantt Chart grid.
The splitter is active only when rowHeaderScrolling is enabled.
DayPilot.Gantt.rowHeaderSplitterWidth3JavaScript
const gantt = new DayPilot.Gantt("dp", {
rowHeaderScrolling: true,
rowHeaderSplitterWidth: 2,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
rowHeaderScrolling: true,
rowHeaderSplitterWidth: 2,
// ...
};React
<DayPilotGantt
rowHeaderScrolling={true}
rowHeaderSplitterWidth={2}
{/* ... */}
/>Vue
<DayPilotGantt
:rowHeaderScrolling="true"
:rowHeaderSplitterWidth="2"
<!-- ... -->
/>