The rowMinHeight property (number) sets the minimum row height, in pixels, used by the JavaScript Scheduler. See Scheduler: Row Height.
Declaration
DayPilot.Scheduler.rowMinHeightDefault Value
0Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowMinHeight: 30,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowMinHeight: 30,
// ...
};React
<DayPilotScheduler
rowMinHeight={30}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowMinHeight="30"
<!-- ... -->
/>See Also
DayPilot.Scheduler.rowMarginTop
DayPilot.Scheduler.rowMarginBottom
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot