The cellWidth property (number) specifies the cell width in pixels. Used if cellWidthSpec is set to "Fixed".
DayPilot.Scheduler.cellWidth
20
const dp = new DayPilot.Scheduler("dp", {
cellWidthSpec: "Fixed",
cellWidth: 40,
// ...
});
dp.init();
<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
cellWidthSpec: "Fixed",
cellWidth: 40,
// ...
};
<DayPilotScheduler
cellWidthSpec="Fixed"
cellWidth={40}
{/* ... */}
/>
<DayPilotScheduler cellWidthSpec="Fixed" :cellWidth="40" <!-- ... --> />
DayPilot.Scheduler.cellDuration