Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var report = new StiReport();
report.Load("Reports/TwoSimpleLists.mrt");
report.Render(false);
// Save to a file...
report.ExportDocument(StiExportFormat.Pdf, exportFilePath);
// ...or stream it to the browser as a download
StiReportResponse.ResponseAsPdf(report);Render(false) — prepare the document without a progress dialog; required before export.ExportDocument(format, path) — write a file; StiReportResponse.ResponseAsPdf/Html streams it to the browser.StiBlazorHelper.Initialize(JSRuntime) once in OnInitialized.