Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
StiBlazorViewerOptions object — here the toolbar is hidden and full-screen mode is enabled.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" />Toolbar.Visible — show or hide the toolbar; Toolbar.ViewMode sets single-page or continuous scrolling.Appearance.FullScreenMode — open the viewer occupying the whole area.