How to customize animation settings in Syncfusion Blazor TreeView?
To customize the animation settings in Blazor TreeView, we have TreeViewNodeAnimationSettings API which includes TreeViewAnimationExpand and TreeViewAnimationCollapse which helps to specify the animation to appear when expanding or collapsing the TreeView nodes.
Both collapse and expand action includes the following properties.
Property | Description |
---|---|
Duration | Specifies the duration to animate |
Easing | Specifies the animation timing function |
Effect | Specifies the type of animation |
<SfTreeView TValue="TreeItem">
<TreeViewFieldsSettings DataSource="@TreeDataSource" Id="NodeId" Text="NodeText" Expanded="Expanded" Child="@("Child")"></TreeViewFieldsSettings>
<TreeViewNodeAnimationSettings>
<TreeViewAnimationExpand Duration="100" Effect="Syncfusion.Blazor.AnimationEffect.SlideDown" Easing="Linear"></TreeViewAnimationExpand>
<TreeViewAnimationCollapse Duration="100" Effect="Syncfusion.Blazor.AnimationEffect.SlideUp" Easing="Linear"></TreeViewAnimationCollapse>
</TreeViewNodeAnimationSettings>
</SfTreeView>
Sample link:
https://blazorplayground.syncfusion.com/VXhzXgjvUALbvfAo
Conclusion
I hope you enjoyed learning about how to customize animation settings in Syncfusion Blazor TreeView.
You can refer to our Blazor TreeView feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Blazor TreeView example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!