Having trouble getting help?
Contact Support
Contact Support
Animation in ASP.NET MVC Stepper control
4 Jan 20241 minute to read
The Stepper progress state can be animated, smoothly transitioning from one step to another. You can customize the animation’s Duration and Delay, by using the Animation property.
You can disable the animation by setting the Enable property to false
. By default, the value is true
.
Fields | Type | Description |
---|---|---|
Duration | number |
Specifies the duration of the animated transition for each step. The default value is 2000 milliseconds. |
Delay | number |
Specifies the delay to initiate the animated transition for each step in milliseconds. The default value is 0 . |
The example demonstrates the animation Duration
and Delay
settings for the Stepper.
@using Syncfusion.EJ2.Navigations
@Html.EJS().Stepper("stepper").Steps(ViewBag.default).Animation(ViewBag.animation).Render()
public ActionResult Demo()
{
List<Step> defaultStepper = new List<Step>();
defaultStepper.Add(new Step { });
defaultStepper.Add(new Step { });
defaultStepper.Add(new Step { });
defaultStepper.Add(new Step { });
defaultStepper.Add(new Step { });
var animationSettings = new StepperAnimationSettings { Enable = true, Duration = 2000, Delay = 500 };
ViewBag.default = defaultStepper;
ViewBag.animation = animationSettings;
return View();
}