Skip to main content
A newer version of this page is available. .
All docs
V20.2

DashboardSettings.AsyncMode Property

Gets or sets whether Async mode is activated for a dashboard control.

Namespace: DevExpress.DashboardCommon

Assembly: DevExpress.Dashboard.v20.2.Core.dll

NuGet Packages: DevExpress.Dashboard.Core, DevExpress.WindowsDesktop.Dashboard.Core

Declaration

public static DefaultBoolean AsyncMode { get; set; }

Property Value

Type Description
DefaultBoolean

True to activate Async mode; otherwise, False or Default.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

The DashboardSettings.AsyncMode property is in effect when the DashboardControl.AsyncMode property is not specified.

The following code snippet activates Async mode:

DashboardSettings.AsyncMode = DefaultBoolean.True;

Note

The Default values of DashboardSettings properties are set based on the DevExpress installation version. You can, however, use the DashboardSettings.DefaultSettingsCompatibilityMode property to change the default settings and specify the version settings you wish to use.

See Also