diff --git a/_config.yml b/_config.yml
index f992aa6ecc..7899259320 100644
--- a/_config.yml
+++ b/_config.yml
@@ -394,6 +394,8 @@ navigation:
title: "Notification"
"*popup":
title: "Popup"
+ "*popover":
+ title: "Popover"
"*numerictextbox":
title: "NumericTextBox"
"*pdfviewer":
@@ -626,6 +628,7 @@ intro_columns:
"Notification": "notification-overview"
"Progress Bar": "progressbar-overview"
"Chunk Progress Bar": "chunkprogressbar-overview"
+ "Popover": "popover-overview"
"Tooltip": "tooltip-overview"
-
title: "Documents"
diff --git a/components/popover/animation.md b/components/popover/animation.md
new file mode 100644
index 0000000000..9413a3d523
--- /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`
+
+The [example](#example) below lets you customize the available `AnimationType` 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.
+
+The [example](#example) below lets you customize the available `AnimationDuration` parameter and see how it affects 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
+
+
+
+