The Blazor viewer is configured through a StiBlazorViewerOptions object — here the toolbar is hidden and full-screen mode is enabled.

Configure the options.
Options = new StiBlazorViewerOptions();
Options.Toolbar.Visible = false;
Options.Toolbar.ViewMode = StiWebViewMode.Continuous;
Options.Appearance.FullScreenMode = true;
Pass them to the viewer.
<StiBlazorViewer Report="@Report" Options="@Options" />

How it works. The options object controls every aspect of the viewer, so the same component can be a full editor or a bare preview.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.