Skip to main content

DxChartAnimationSettings.Enabled Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.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

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