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 Stimulsoft.Report.StiReport();
report.loadFile("../reports/SimpleList.mrt");
report.renderAsync2();
function saveReportPdf() {
report.exportDocumentAsync(function (pdfData) {
var blob = new Blob([new Uint8Array(pdfData)], { type: "application/pdf" });
window.open(URL.createObjectURL(blob));
}, Stimulsoft.Report.StiExportFormat.Pdf);
}exportDocumentAsync(callback, StiExportFormat.Pdf) — renders to PDF bytes and hands them to the callback.new Blob(...) + URL.createObjectURL — wrap the bytes as a blob and open them in a browser tab.