A dashboard can be exported or printed straight to the browser without a viewer — to a file on the server, or streamed to the user as a download.

Export to a file, or stream as a download.
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, PrintAsPdf

How it works. The prepared dashboard is format-agnostic, so the same load can be saved server-side or pushed to the user for download or printing.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.