Skip to main content

PivotGridDataSourceOptions.UpdateDelay Property

Specifies the delay (in milliseconds) that occurs before passing the changes made in a Pivot Grid to its associated Chart.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v24.1.dll

NuGet Package: DevExpress.Charts

Declaration

[NonTestableProperty]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
public int UpdateDelay { get; set; }

Property Value

Type Description
Int32

An integer value, specifying the update delay, in milliseconds.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to UpdateDelay
WinForms Controls ChartControl
ASP.NET Web Forms Controls WebChartControl
ASP.NET MVC Extensions ChartControlSettings
.NET Reporting Tools XRChart

Remarks

The UpdateDelay property is linked with the PivotGridOptionsChartDataSource.UpdateDelay property of the associated Pivot Grid.

You can use the UpdateDelay property, to adjust the performance of your Pivot Chart, e.g. when using the PivotGridDataSourceOptions.SelectionOnly property.

This property is not available among WebChartControl.PivotGridDataSourceOptions.

Note

If the Chart’s data source is not a Pivot Grid, trying to set this property causes a NotSupportedException, and the UpdateDelay property returns false, when trying to get its value.

For more information, see Pivot Charting (Integration with a Pivot Grid Control).

See Also