Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
var report = new StiReport();
report.Load($"{ReportsDirectory}/TwoSimpleLists.mrt");
report.Render(false);
report.ExportDocument(StiExportFormat.Pdf, exportFilePath);Render(false) — build the document without a progress dialog; required before export.ExportDocument(StiExportFormat.Pdf, path) — write the result to a file; any StiExportFormat works.