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.

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.