alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class TooltipAnimationSettings

    Animation options that are common for both open and close actions of the Tooltip.

    Inheritance
    object
    TooltipAnimationSettings
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Popups
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class TooltipAnimationSettings
    Remarks

    This class provides configuration options for controlling the timing and visual effects of Tooltip animations during both opening and closing transitions.

    Examples
    var animationSettings = new TooltipAnimationSettings
    {
        Delay = 100,
        Duration = 300,
        Effect = Effect.FadeIn
    };

    Constructors

    TooltipAnimationSettings()

    Declaration
    public TooltipAnimationSettings()

    Properties

    Delay

    Gets or sets the delay value in milliseconds indicating the waiting time before the animation begins.

    Declaration
    [JsonPropertyName("delay")]
    public double? Delay { get; set; }
    Property Value
    Type Description
    double?

    A double value representing the delay in milliseconds. The default value is null.

    Remarks

    This property specifies how long to wait before starting the Tooltip animation. A higher value will create a longer pause before the animation effect begins.

    Duration

    Gets or sets the duration of the animation that is completed per animation cycle.

    Declaration
    [JsonPropertyName("duration")]
    public double? Duration { get; set; }
    Property Value
    Type Description
    double?

    A double value representing the animation duration in milliseconds. The default value is null.

    Remarks

    This property controls how long the Tooltip animation takes to complete one full cycle. Shorter durations create faster animations, while longer durations create slower, more gradual animations.

    Effect

    Gets or sets the animation effect applied to the Tooltip during open and close actions.

    Declaration
    [JsonPropertyName("effect")]
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public Effect Effect { get; set; }
    Property Value
    Type Description
    Effect

    An Effect enumeration value that specifies the type of animation effect to apply.

    Remarks

    This property determines the visual transition effect used when showing or hiding the Tooltip. The available effects include fade, slide, zoom, and other predefined animation types.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved