Select theme:

SSRSViewer (Angular)Link to this section

This guide demonstrates how to use the SSRSViewer component to access Microsoft SQL Server Reporting Services.

Quick videoLink to this section

SSRSViewer PropertiesLink to this section

NameTypeDefaultDescription
Namestring'ssrsviewer' + index suffixUnique name of the SSRSViewer.
parametersarraynullSSRSViewer parameters.
reportServerstringnullMicrosoft SQL Server Reporting Services report server url.
reportNamestringnullReport name.
useProxyboolean/expressionfalseShould SSRSViewer use server-side proxy or directly access report server.
Visibleboolean/expressiontrueIs SSRSViewer visible.

image

Using server-side proxy to customize report parametersLink to this section

When useProxy is set to True you can customize the report request using OnReportRequest partial method. You can change url, headers, report parameters, etc. image

public partial class ReportController
{
    partial void OnReportRequest(ref HttpRequestMessage requestMessage)
    {
        // Customize report parameters
    }
}
Public Partial Class ReportController
    Private Partial Sub OnReportRequest(ByRef requestMessage As HttpRequestMessage)
        ' Customize report parameters
    End Sub
End Class

Angular declarationLink to this section

<rz-ssrsviewer #ssrsviewer0 reportServer="http://localhost/ReportServer/" reportName="ProductSales" [useProxy]="true"
  [style]="{'height':'500px','width':'100%'}">
</rz-ssrsviewer>

© 2016-2026 Radzen Ltd. All Rights Reserved.
Designed and developed with ❤️ in Radzen Blazor Studio.
IP Geolocation by DB-IP

Select theme: