Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
@page "/"
@using Stimulsoft.Report
@using Stimulsoft.Report.Blazor
<StiBlazorViewer Report="@Report" />
@code {
private StiReport Report;
protected override void OnInitialized()
{
base.OnInitialized();
this.Report = new StiReport();
this.Report.Load("Reports/TwoSimpleLists.mrt");
}
}The <StiBlazorViewer> component binds to a StiReport through its Report parameter. The report is created and loaded in OnInitialized, and the viewer renders it in the browser.