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

DashboardExtensionSettings.WorkingMode Property

Gets or sets the working mode of the Web Dashboard.

Namespace: DevExpress.DashboardWeb.Mvc

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

Declaration

public WorkingMode WorkingMode { get; set; }

Property Value

Type Description
WorkingMode

A WorkingMode enumeration value that specifies the working mode of the Web Dashboard.

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 Web Dashboard on the client side using the ASPxClientDashboard.SwitchToViewer/ASPxClientDashboard.SwitchToDesigner methods.

See Also