For the first time, adding a Reporting Services report to an ASP.NET page and using local processing. Is there a way to control the reportviewer toolbar (Visual Studio 10) so that the icons are not so wide? The mines spanned several rows, and I could only get them on one line, removing some of them. Below is the image as well as the page code.
<rsweb:ReportViewer ID="rptWireReport" runat="server" Font-Names="Verdana"
Font-Size="8pt" InteractiveDeviceInfos="(Collection)"
WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt"
SizeToReportContent="true" ShowFindControls="False"
ShowZoomControl="False">
<LocalReport ReportPath="reports\WireReport.rdlc">
</LocalReport>
</rsweb:ReportViewer>

source
share