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.
Declaration
DayPilot.Scheduler.cellGroupBy
Possible Values
- "Hour"
- "Day" (default)
- "Week"
- "Month"
- "Quarter"
- "Year"
- "None"
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
cellGroupBy: "Week",
// ...
});
dp.init();
Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
cellGroupBy: "Week",
// ...
};
React
<DayPilotScheduler
cellGroupBy="Week"
{/* ... */}
/>
Vue
<DayPilotScheduler cellGroupBy="Week" <!-- ... --> />
See Also
DayPilot.Scheduler.timeHeaders
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot