DxChartAnimationSettings.Enabled Property
Specifies whether Chart series are animated when the component renders them for the first time.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool Enabled { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
The animation appears during the Chart’s first render.
Set the property to false
to disable the animation and optimize the performance.
<DxChart Data="@forecasts">
<DxChartAnimationSettings Enabled="false"></DxChartAnimationSettings>
@* ... *@
</DxChart>
See Also