The report engine runs anywhere .NET runs — no web or desktop host required. A console app can render a template and export it to a file.

Load, render, export.
var report = new StiReport();
report.Load($"{ReportsDirectory}/TwoSimpleLists.mrt");

report.Render(false);
report.ExportDocument(StiExportFormat.Pdf, exportFilePath);

How it works. The same engine that powers the web viewer runs headless here, so reports can be generated from schedulers, services or command-line tools.

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.