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

BootstrapChartAnimationSettings.MaxPointCountSupported Property

Specifies how many series points the widget should have before the animation will be disabled.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[DefaultValue(300)]
public int MaxPointCountSupported { get; set; }

Property Value

Type Default Description
Int32 300

An integer value that specifies the maximum number of series points.

Property Paths

You can access this nested property as listed below:

Object Type Path to MaxPointCountSupported
BootstrapChart
.SettingsAnimation.MaxPointCountSupported
BootstrapChartBase
.SettingsAnimation.MaxPointCountSupported
BootstrapCoordinateSystemChart
.SettingsAnimation.MaxPointCountSupported
BootstrapPieChart
.SettingsAnimation.MaxPointCountSupported
BootstrapPolarChart
.SettingsAnimation.MaxPointCountSupported

Remarks

If the number of series points in your chart increases over time, animating them may affect widget performance. In this case, use the MaxPointCountSupported option to specify a limit for the number of points. When this limit is exceeded, the animation will be disabled.

See Also