Class Chart3DAnimation
Gets or sets the animation options for the SfChart3D series.
Inherited Members
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DAnimation : Chart3DSubComponent, IChart3DSubcomponentTracker
Remarks
Use the Chart3DAnimation class to define animation options for the SfChart3D series. This class can be used to customize properties such as duration, easing functions, and other animation-related settings.
Constructors
Chart3DAnimation()
Declaration
public Chart3DAnimation()
Properties
Delay
Gets or sets the delay of animation in milliseconds.
Declaration
public double Delay { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is 0. |
Remarks
Use the Delay property to specify the delay duration for animations in milliseconds. A non-zero value adds a delay before the animation starts, providing control over the timing of the animation.
Duration
Gets or sets the duration of animation in milliseconds.
Declaration
public double Duration { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is 2000. |
Remarks
Use the Duration property to specify the duration of animations in milliseconds. The duration determines how long an animation takes to complete, affecting its speed and smoothness.
Enable
Gets or sets the animation to be enabled or disabled for the SfChart3D.
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Accepts the boolean value. The default value is true . |
Remarks
Use the Enable property to enable or disable animations for the SfChart3D.
When set to true
, animations will be enabled, providing visual effects during chart interactions.
Methods
OnInitialized()
Declaration
protected override void OnInitialized()
OnParametersSet()
Declaration
protected override void OnParametersSet()