The rowHeaderWidth property (number) sets the initial width of the JavaScript Scheduler row header in pixels.
Declaration
DayPilot.Scheduler.rowHeaderWidthDefault Value
80Notes
If 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.
Examples
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"
<!-- ... -->
/>See Also
Row Header Width Auto-Fit [doc.daypilot.org]
Row Header Scrolling [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot