The cellGroupBy property (string) specifies the cell group size (first row of the header).
The value of cellGroupBy is only used when it is referenced as a group size in the timeHeaders property.
DayPilot.Scheduler.cellGroupBy
const dp = new DayPilot.Scheduler("dp", {
cellGroupBy: "Week",
// ...
});
dp.init();
<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
cellGroupBy: "Week",
// ...
};
<DayPilotScheduler
cellGroupBy="Week"
{/* ... */}
/>
<DayPilotScheduler cellGroupBy="Week" <!-- ... --> />