The rowHeaderWidth property (number) sets the initial width of the JavaScript Scheduler row header in pixels.
DayPilot.Scheduler.rowHeaderWidth80If row header width auto-fit is enabled (it is by default), the width is adjusted to fit the content.
If row header scrolling is enabled, this value determines the width of the row header container.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderWidth: 120,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderWidth: 120,
// ...
};React
<DayPilotScheduler
rowHeaderWidth={120}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowHeaderWidth="120"
<!-- ... -->
/>Row Header Width Auto-Fit [doc.daypilot.org]
Row Header Scrolling [doc.daypilot.org]