A dashboard renders and exports to documents and data formats just like a report.

Load, then export.
var report = StiReport.CreateNewDashboard();
report.Load("Dashboards\\DashboardChristmas.mrt");

var stream = new FileStream("Dashboard.pdf", FileMode.Create);
report.ExportDocument(StiExportFormat.Pdf, stream);   // Excel, Image, ...

How it works. The dashboard is rendered and serialized to the chosen format in one call, ready to be saved or sent.

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.