Skip to main content
A newer version of this page is available. .

DxChartAnimationSettings.Enabled Property

Specifies whether Chart series are animated when the component renders them for the first time.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(true)]
[Parameter]
public bool Enabled { get; set; }

Property Value

Type Default Description
Boolean true

true to enable the animation; otherwise, false.

Remarks

The animation appears during the Chart’s first render.

Animation enabled

Note

The animation is disabled in Charts with multiple panes.

Set the property to false to disable the animation and optimize the performance.

<DxChart Data="@forecasts">
    <DxChartAnimationSettings Enabled="false"></DxChartAnimationSettings>
    @* ... *@
</DxChart>

Animation disabled

See Also