This example shows how to show a report in the viewer. First, load scripts:
@using Stimulsoft.Base
@using Stimulsoft.Report
@using Stimulsoft.Report.Blazor

Next, add report viewer:
<!--Report Viewer-->
<StiBlazorViewer Report="@Report" />

After that, create report object and load report template:
@code
{
    //Report object to use in Viewer
	private StiReport Report;

	protected override async Task OnInitializedAsync()
	{
		await base.OnInitializedAsync();

		//Create empty report object
		this.Report = new StiReport();

		//Load report template
		var reportBytes = await Http.GetByteArrayAsync("Reports/TwoSimpleLists.mrt");
		this.Report.Load(reportBytes);
    }
}

In the screenshot below you can see the result of the sample code:

Showing a Report in the Viewer

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.