Пример брал здесь: https://github.com/stimulsoft/Samples-B ... ndex.razor
Добавил в него подписку на событие Click.
Код: Выделить всё
<StiBlazorViewer Report="@report" />
@code {
private StiReport report;
protected override async Task OnInitializedAsync()
{
report = new StiReport();
report.Load("Reports/TwoSimpleLists.mrt");
report.Click += OnReportClick;
}
private void OnReportClick(object sender, EventArgs e)
{
}
}