Unplanned
Last Updated: 25 Nov 2025 12:47 by ADMIN
Scheduled for 2026 Q1
Jonas
Created on: 25 Nov 2025 12:25
Category: Reporting
Type: Bug Report
1
When the WPF Report Viewer is hosted in a parent with UseLayoutRounding="True", some report text content may appear cut

My application uses RadDocking. When the WPF Report Viewer is hosted in RadDocking, some Graph labels appear cut.

The problem is related to the property UseLayoutRounding="True" in the RadDocking.

The workaround is to use the following setting:

RadPane pane = new RadDocumentPane();
pane.UseLayoutRounding = false;
pane.Header = "Report";
pane.Content = reportViewer;
DocumentPaneGroup.AddItem(pane, Telerik.Windows.Controls.Docking.DockPosition.Center);

 

0 comments