This example shows how to show the report viewer in the full screen mode by default. In the full screen mode, the viewer will be displayed on all of the available area of the browser window. Also to switch this mode you can use the 'Full Screen' button on the toolbar of the viewer. To enable this mode by default you need to set the fullScreenMode option in the StiViewerOptions object. For example, also set to enable the scrollbarsMode option, this option enables the use of built-in report window inside the viewer:
<script type="text/javascript">
	// Set full screen mode for the viewer
	var options = new Stimulsoft.Viewer.StiViewerOptions();
	options.appearance.scrollbarsMode = true;
	options.appearance.fullScreenMode = true;

	// Create the report viewer with specified options
	var viewer = new Stimulsoft.Viewer.StiViewer(options, "StiViewer", false);

	...
</script>

На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

Using the Full-Screen Mode in the Viewer

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.