React Scheduler > Behaviour of `rowHeaderWidth`
Asked by Andy
10 months ago.
10 months ago.
Hello,
Is it intentional behaviour that the left pane’s width is capped at the width sum of all rowHeaderColumns?
This is my configuration.
// Sum of width is 350
const rowHeaderColumns = [
{ id: '1', width: 200, label: 'Title' },
{ id: '2', width: 100, label: 'Owner' },
{ id: '3', width: 50, label: 'Status' }
];
const rowHeaderWidth = 1000;
// Outcome: The left pane's width is 350, instead of 1000.
const config = {
treeEnabled: true,
weekStarts,
rowHeaderColumns,
rowHeaderWidth,
rowHeaderColumnsMergeParents: false,
rowHeaderWidthAutoFit: false,
rowHeaderColumnsResizable: false,
rowHeaderResizable: false,
rowHeaderScrolling: true,
rowHeaderSplitterWidth: 1,
eventMinWidth: 100,
controlRef,
onAfterRender,
useEventBoxes: 'Never',
snapToGrid: false,
heightSpec: 'Parent100Pct',
treeAnimation: false,
floatingEvents: false,
}
DayPilot