Using the Full-Screen Mode in the Viewer
Our sample projects and report templates can help you learn the basics of working with our products.Full-screen mode makes the dashboard viewer fill the whole browser window, ideal for dashboard portals. This example enables it.
Viewer setup. Configure the viewer, load the dashboard, assign it to the component, and process the requests or events raised by the UI.
In the screenshot below you can see the result of the sample code:

Viewer setup. Configure the viewer, load the dashboard, assign it to the component, and process the requests or events raised by the UI.
var options = new Stimulsoft.Viewer.StiViewerOptions();
options.appearance.fullScreenMode = true;
var viewer = new Stimulsoft.Viewer.StiViewer(options, "StiViewer", false);
var report = Stimulsoft.Report.StiReport.createNewDashboard();
report.loadFile("../dashboard/Christmas.mrt");
viewer.report = report;
viewer.renderHtml();With appearance.fullScreenMode = true the viewer occupies the entire window and behaves like a dedicated dashboard application.In the screenshot below you can see the result of the sample code:
