From 16b4dacca1bd80ecc60b6c806188fde1ca2b4260 Mon Sep 17 00:00:00 2001
From: Svetoslav Dimitrov <61150560+svdimitr@users.noreply.github.com>
Date: Thu, 25 Jan 2024 14:07:16 +0200
Subject: [PATCH 01/16] docs(popover): documentation
---
components/popover/animation.md | 117 ++++++++++++++++++++
components/popover/overview.md | 135 +++++++++++++++++++++++
components/popover/position-collision.md | 95 ++++++++++++++++
3 files changed, 347 insertions(+)
create mode 100644 components/popover/animation.md
create mode 100644 components/popover/overview.md
create mode 100644 components/popover/position-collision.md
diff --git a/components/popover/animation.md b/components/popover/animation.md
new file mode 100644
index 0000000000..4f262232d9
--- /dev/null
+++ b/components/popover/animation.md
@@ -0,0 +1,117 @@
+---
+title: Animation
+page_title: Popover Animation
+description: Explore the animation settings of the Popover for Blazor. Discover how to adjust the way the Popover appears and disappears on the screen.
+slug: popover-animation
+tags: telerik,blazor,popover,animation
+published: True
+position: 35
+---
+
+# Popover Animation Settings
+
+This article outlines the available settings that allow you to customize the animations when the Popover displays and hides.
+
+## Type
+
+You can change the way the Popover component flows in and out of the screen by setting the `AnimationType` parameter to a member of the `AnimationType` enum:
+
+* `None`
+* `Fade`
+* `PushUp`
+* `PushDown`
+* `PushLeft`
+* `PushRight`
+* `RevealVertical`
+* `SlideUp`
+* `SlideIn`
+* `SlideDown` (default)
+* `SlideRight`
+* `SlideLeft`
+* `ZoomIn`
+* `ZoomOut`
+
+See the [example](#example) below to customize the available parameters and see how they affect the Popover component.
+
+## Duration
+
+Set the `AnimationDuration` parameter in milliseconds as `int` to control how long the animation will take until the component is fully displayed.
+
+See the [example](#example) below to customize the available parameters and see how they affect the Popover component.
+
+## Example
+
+The following example lets you experiment with the available settings that control the animation in the Popover. It starts with the default component behavior.
+
+````CSHTML
+
+
+
+