Class Chart3DAnimation
Gets or sets the animation options for the 3D Chart series.
Inheritance
Inherited Members
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DAnimation : Chart3DSubComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Remarks
Use the Chart3DAnimation class to define animation options for the 3D Chart 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
[Parameter]
public double Delay { get; set; }
Property Value
| Type | Description |
|---|---|
| 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
[Parameter]
public double Duration { get; set; }
Property Value
| Type | Description |
|---|---|
| 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 3D Chart.
Declaration
[Parameter]
public bool Enable { get; set; }
Property Value
| Type | Description |
|---|---|
| bool | Accepts the boolean value. The default value is true . |
Remarks
Use the Enable property to enable or disable animations for the 3D Chart.
When set to true, animations will be enabled, providing visual effects during chart interactions.