The treeAnimation property (boolean) enables the Scheduler resource tree children expand/collapse animation.
Available since 2019.1.3572.
Declaration
DayPilot.Scheduler.treeAnimationDefault Value
trueNotes
You may want to disable the animation for heavy Scheduler views with lots of events or a large viewport.
Examples
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot