The rowHeaderWidthAutoFitShrink property (boolean) specifies whether the JavaScript Scheduler component should shrink the row header width during row header width auto-fit.
DayPilot.Scheduler.rowHeaderWidthAutoFitShrinkfalseBy default, this option is disabled and the initial width is only extended to match the content.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderWidthAutoFitShrink: true,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderWidthAutoFitShrink: true,
// ...
};React
<DayPilotScheduler
rowHeaderWidthAutoFitShrink={true}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowHeaderWidthAutoFitShrink="true"
<!-- ... -->
/>Row Header Width Auto-Fit [doc.daypilot.org]