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

ASPxDashboard.WorkingMode Property

Gets or sets a working mode of the ASPxDashboard control.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v18.2.Web.WebForms.dll

Declaration

[DefaultValue(WorkingMode.Designer)]
public WorkingMode WorkingMode { get; set; }

Property Value

Type Default Description
WorkingMode **Designer**

A WorkingMode enumeration value that specifies a working mode of the ASPxDashboard control.

Available values:

Name Description
Designer

The Web Dashboard acts as a Dashboard Designer and allows end-users to create, edit and save dashboards. Note that in this case, you can switch to the Viewer mode on the client side.

Viewer

The Web Dashboard acts as a Dashboard Viewer and allows you to display dashboards to end-users. Note that in this case, you can switch to the Designer mode on the client side.

ViewerOnly

The Web Dashboard acts as a Dashboard Viewer without the capability to switch to the Designer mode on the client side. In this mode, the Web Dashboard does not load the extensions required for designing dashboards.

Remarks

Note that you can switch between working modes of the ASPxDashboard on the client side using the ASPxClientDashboard.SwitchToViewer/ASPxClientDashboard.SwitchToDesigner methods.

See Also