Stimulsoft ships native Blazor components, so the viewer is placed as a Razor tag and fed a StiReport object.

Place the viewer component.
<StiBlazorViewer Report="@Report" />
Load a report. Create the report and load its template in OnInitializedAsync:
private StiReport Report;

protected override async Task OnInitializedAsync()
{
    Report = new StiReport();
    var bytes = await Http.GetByteArrayAsync("Reports/TwoSimpleLists.mrt");
    Report.Load(bytes);
}

How it works. The component renders the bound report entirely in the browser, updating whenever the Report object changes.

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.