Note that there are some explanatory texts on larger screens.

plurals
  1. POReportViewer cutting off top of report when zoomed
    primarykey
    data
    text
    <p>We have a report running out of SQL Server REporting Services that works fine. When zoomed to 150% it looks correct. (Seen here <a href="http://i.imgur.com/pEEBJyx.png" rel="nofollow">http://i.imgur.com/pEEBJyx.png</a>)</p> <p>I built a asp.net page to display the report using ReportViwer. It displays the report fine and everything works (Seen here <a href="http://i.imgur.com/gn0YbTl.png" rel="nofollow">http://i.imgur.com/gn0YbTl.png</a>)</p> <p>The problem is you can't zoom in. It zooms in weird and cuts off the top of the page (Seen here <a href="http://i.imgur.com/dn5uXga.png" rel="nofollow">http://i.imgur.com/dn5uXga.png</a>).</p> <p>Here is the reportviewer code in the aspx page.</p> <pre><code>&lt;rsweb:ReportViewer ID="ReportViewer1" runat="server" ProcessingMode="Remote" SizeToReportContent="True"&gt;&lt;/rsweb:ReportViewer&gt; </code></pre> <p>Here is the back end C# code</p> <pre><code>void RenderReport() { //string SiteName = GetCurrentSiteNameFromSiteID((int)Session["SiteID"]); int SiteID = (int)Session["SiteID"]; Uri ReportURI = new Uri(WebConfigurationManager.AppSettings["ReportServerURI"]); ReportViewer1.ProcessingMode = ProcessingMode.Remote; ReportViewer1.ServerReport.ReportServerUrl = ReportURI; ReportViewer1.ServerReport.ReportPath = @"/Calendarized Utility Report/Calendarized Utility Report"; ReportParameter rpsite = new ReportParameter("siteid", SiteID.ToString()); rpsite.Visible = false; ReportParameter rpyear = new ReportParameter("Year", year); //SiteID.ToString()); rpyear.Visible = false; ReportParameter rpmonth = new ReportParameter("Month", month); //siteid", SiteID.ToString()); rpmonth.Visible = false; ReportViewer1.ServerReport.SetParameters(rpsite); ReportViewer1.ServerReport.SetParameters(rpyear); ReportViewer1.ServerReport.SetParameters(rpmonth); } </code></pre> <p>Is there a parameter I am missing to allow me to zoom in correctly? I'm not using any css or anything. </p> <p>Thanks</p> <p>Edit: Both are using Report Viewer 2012, Version=11.0.3000.0 of Microsoft Reporting and viewing the site in IE 10. It works fine in Chrome. </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload