The cellSweepingCacheSize property (number) sets the size of the cell DOM cache. It is the maximum number of grid cells that are out of the Scheduler viewport but remain in the DOM.
Declaration
DayPilot.Scheduler.cellSweepingCacheSizeDefault Value
1000Notes
This property applies only when cellSweeping is enabled.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
cellSweepingCacheSize: 500,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
cellSweepingCacheSize: 500,
// ...
};React
<DayPilotScheduler
cellSweepingCacheSize={500}
{/* ... */}
/>Vue
<DayPilotScheduler
:cellSweepingCacheSize="500"
<!-- ... -->
/>See Also
DayPilot.Scheduler.cellSweeping
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot