Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
<StiBlazorDesigner Report="@Report" OnSaveReport="@OnSaveReport" />
@code {
private StiReport Report;
protected override void OnInitialized()
{
this.Report = new StiReport();
this.Report.Load("Reports/TwoSimpleLists.mrt");
}
private void OnSaveReport(StiSaveReportEventArgs args)
{
args.Report.Save("Reports/TwoSimpleLists.mrt");
}
}The OnSaveReport callback receives the edited report through args.Report; here it is saved back to a file, but you can store it in a database or any other location.