The treeAnimation property (boolean) enables the Scheduler resource tree children expand/collapse animation.
Available since 2019.1.3572.
DayPilot.Scheduler.treeAnimationtrueYou may want to disable the animation for heavy Scheduler views with lots of events or a large viewport.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
treeAnimation: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
treeAnimation: false,
// ...
};React
<DayPilotScheduler
treeAnimation={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:treeAnimation="false"
<!-- ... -->
/>