In a WPF app a dashboard displays either in a ready-made window or embedded in a StiViewerControl.

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

report.ShowWithWpf();                  // ready-made WPF window
// or: ViewerControl.Report = report;  // embedded control

How it works. The WPF viewer control hosts the dashboard inside your interface, while ShowWithWpf() is the quickest way to preview without designing a window.

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.