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.
DayPilot.Scheduler.cellSweepingCacheSize1000This property applies only when cellSweeping is enabled.
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"
<!-- ... -->
/>