Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxToastProvider.AnimationType Property

Specifies the animation type used to display toasts.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(ToastAnimationType.Slide)]
[Parameter]
public ToastAnimationType AnimationType { get; set; }

#Property Value

Type Default Description
ToastAnimationType Slide

The animation type.

Available values:

Name Description
Slide

A toast appears with a slide animation effect.

Fade

A toast appears with a fade-in animation effect.

SlideAndFade

A toast appears with slide and fade-in animation effects.

#Remarks

Toast notifications appear with a predefined animation effect specified by the AnimationType property.

Run Demo: Toast Customization

razor
<DxToastProvider 
    AnimationType="ToastAnimationType.Fade" 
    HorizontalAlignment="HorizontalAlignment.Left"
    VerticalAlignment="VerticalEdge.Top"
    RenderStyle="ToastRenderStyle.Success" 
    ThemeMode="ToastThemeMode.Saturated"/>
See Also