The cellMode property (boolean) enables the cell stacking mode.
DayPilot.Month.cellModefalseJavaScript
const month = new DayPilot.Month("dp", {
cellMode: true,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
cellMode: true,
// ...
};React
<DayPilotMonth
cellMode={true}
{/* ... */}
/>Vue
<DayPilotMonth
:cellMode="true"
<!-- ... -->
/>Cell Stacking Mode [doc.daypilot.org]