The rowHeaderWidthAutoFit property (boolean) enables automatic adjustment of row header column width to fit the content in the JavaScript Scheduler component.
DayPilot.Scheduler.rowHeaderWidthAutoFittrueWhen enabled, the component measures the row header content and adjusts the width automatically.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderWidthAutoFit: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderWidthAutoFit: false,
// ...
};React
<DayPilotScheduler
rowHeaderWidthAutoFit={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowHeaderWidthAutoFit="false"
<!-- ... -->
/>Row Header Width Auto-Fit [doc.daypilot.org]