Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
async API keeps the UI thread free, so the window stays responsive during long operations.Report = new StiReport();
Report.Load("MasterDetail.mrt");Render asynchronously. Await each stage instead of blocking the UI:await Report.CompileAsync(); // only if compilation is needed
await Report.RenderAsync();CompileAsync() / RenderAsync() — build the document without blocking; ExportDocumentAsync() writes it the same way.