Skip to main content
All docs
V24.2

DashboardSettings.DefaultSettingsCompatibilityMode Property

Gets or sets default values of various properties according to the selected DevExpress installation version.

Namespace: DevExpress.DashboardCommon

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

NuGet Package: DevExpress.Dashboard.Core

#Declaration

public static DashboardSettingsCompatibilityMode DefaultSettingsCompatibilityMode { get; set; }

#Property Value

Type Description
DashboardSettingsCompatibilityMode

A DevExpress.DashboardCommon.DashboardSettingsCompatibilityMode object that specifies the DevExpress installation version.

Available values:

Name Description
v20_1

The v20.1 DevExpress installation.

Latest

The latest available DevExpress installation version.

#Remarks

The following code snippet sets the default settings for v20.1:

C#
DashboardSettings.DefaultSettingsCompatibilityMode = DashboardSettingsCompatibilityMode.v20_1;
See Also