Exporting a dashboard through the async API keeps the UI responsive during long exports.

Export without blocking.
Report = StiReport.CreateNewDashboard();
Report.Load("Dashboards\\DashboardChristmas.mrt");

await Report.ExportDocumentAsync(StiExportFormat.Pdf, "Dashboard.pdf");

How it works. The export runs asynchronously, so the form stays interactive until the file is written.

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.