The rowMinHeight property (number) sets the minimum row height, in pixels, used by the JavaScript Scheduler. See Scheduler: Row Height.
DayPilot.Scheduler.rowMinHeight0JavaScript
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"
<!-- ... -->
/>DayPilot.Scheduler.rowMarginTop
Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot