The rowHeaderWidthAutoFit property (boolean) enables automatic adjustment of row header column width to fit the content in the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.rowHeaderWidthAutoFitDefault Value
trueNotes
When enabled, the component measures the row header content and adjusts the width automatically.
Examples
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"
<!-- ... -->
/>See Also
Row Header Width Auto-Fit [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot