Skip to main content
All docs
V18.2

DashboardViewerSettings.FullscreenMode Property

Gets or sets whether the DashboardViewer is in full-screen mode.

Namespace: DevExpress.DashboardWeb.Mvc

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

Declaration

public bool FullscreenMode { get; set; }

Property Value

Type Description
Boolean

true, if the DashboardViewer is in the full-screen mode; otherwise, false.

Remarks

Set the FullscreenMode property to true to allow the dashboard to fill the entire page. This mode is designed to provide the best look for the dashboard on mobile devices.

Note that when you set the FullscreenMode property to true, the Height and Width properties are set to a value of 100%. Specific style settings are applied to page elements (such as HTML, BODY, FORM) on the client side, to disable default page padding, margin and scrolling settings and set the height of these container elements to 100%.

<style type="text/css">
     html, body, form {
          height: 100%;
          margin: 0;
          padding: 0;
          overflow: hidden;
     }
</style>
See Also