Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var report = StiReport.CreateNewDashboard();
report.Load("Dashboards/DashboardChristmas.mrt");
// Save to a file on the server...
report.ExportDocument(StiExportFormat.Pdf, exportFilePath);
// ...or stream it to the browser
StiReportResponse.ResponseAsPdf(report); // ResponseAsHtml, PrintAsPdfExportDocument(format, path) — writes the dashboard to a file in the chosen StiExportFormat.StiReportResponse.ResponseAsPdf/ResponseAsHtml streams the result to the browser; PrintAsPdf sends it to print.StiBlazorHelper.Initialize(JSRuntime) once in OnInitialized.