The cellWidthMin property (number) sets the minimum cell width in pixels in auto cell width mode (cellWidthSpec = "Auto").
DayPilot.Scheduler.cellWidthMin1This property applies only when cellWidthSpec is set to "Auto".
JavaScript
const dp = new DayPilot.Scheduler("dp", {
cellWidthMin: 20,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
cellWidthMin: 20,
// ...
};React
<DayPilotScheduler
cellWidthMin={20}
{/* ... */}
/>Vue
<DayPilotScheduler
:cellWidthMin="20"
<!-- ... -->
/>DayPilot.Scheduler.cellWidthSpec
Auto Cell Width [doc.daypilot.org]
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