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

Designer and Viewer Modes

  • 2 minutes to read

The Web Dashboard can act as a designer or viewer. The following modes are available:

Designer
The Web Dashboard works as a designer and allows users to create, edit, and save dashboards. In this mode, the Web Dashboard loads the extensions required to design dashboards. A user can switch the Web Dashboard to Viewer mode and can modify dashboards from storage on the client side. This is the default mode.
Viewer
The Web Dashboard works as a viewer and displays dashboards to users. In this mode, the Web Dashboard also loads the extensions required to design dashboards. A user can switch the Web Dashboard to Designer mode.
ViewerOnly
The Web Dashboard does not load the extensions required to design dashboards. Users cannot switch to Designer or Viewer modes on the client. This mode affects only the Web Dashboard’s UI and does not afffect server settings. See the following topic for information on how to protect your data: Working Mode Access Rights.

Specify Designer or Viewer Mode on the Server

The way you can specify the working mode on the server side depends on the used backend. Refer to the topics below for more information:

Specify Designer or Viewer Mode on the Client

Set the workingMode property to change the working mode:

<dx-dashboard-control [workingMode]="ViewerOnly"></dx-dashboard-control>

You can dynamically bind the workingMode property. The following code shows how to use from the source-to-view data-binding to switch between working modes when users click a button. The button text depends on the current working mode.

// ...
import { DxDashboardControlModule } from 'devexpress-dashboard-angular';
import { DxButtonModule } from 'devextreme-angular';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    // ...
    DxDashboardControlModule,
    DxButtonModule
  ],
  // ...
})
export class AppModule { }

Switch Between Designer or Viewer Modes in the UI

You can enable the Dashboard Panel to allow users to switch between the Designer and Viewer.

DashboardPanel_Main