Unplanned
Last Updated: 17 Aug 2023 10:05 by Benedikt
Benedikt
Created on: 17 Aug 2023 10:05
Type: Bug Report
1
The DocumentMapVisible values set during the initialization of the viewer are not respected in WPF reporting viewer.

The DocumentMapVisible settings that I set in the initialization of the WPF Report Viewer are not respected.

I can hide/show these areas from the buttons in the report viewer's toolbar but am unable to have them hidden initially.

Currently, the only workaround is to set an event on this.ReportViewer1.RenderingEnd += ReportViewer1_RenderingEnd; 

private void ReportViewer1_RenderingEnd(object sender, Telerik.ReportViewer.Common.RenderingEndEventArgs args)
		{
			this.ReportViewer1.DocumentMapVisible = false;
		}

0 comments