The rowHeaderWidthMin property (number) sets the minimum width of the Scheduler row header, in pixels. It is applied when resizing the row header using the splitter while row header scrolling is enabled.
Available since version 2022.3.5368.
Declaration
DayPilot.Scheduler.rowHeaderWidthMinDefault Value
20Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowHeaderWidthMin: 50,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowHeaderWidthMin: 50,
// ...
};React
<DayPilotScheduler
rowHeaderWidthMin={50}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowHeaderWidthMin="50"
<!-- ... -->
/>See Also
DayPilot.Scheduler.rowHeaderWidth
DayPilot.Scheduler.rowHeaderScrolling
Row Header Scrolling [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot