The cellMode property (boolean) enables the cell stacking mode.
Declaration
DayPilot.Month.cellModeDefault Value
falseExamples
JavaScript
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"
<!-- ... -->
/>See Also
Cell Stacking Mode [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot