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.renderAsync(function () {
document.write("Rendered page count: " + report.renderedPages.count);
});loadFile loads a report template (.mrt), and renderAsync builds the document without blocking the browser, invoking the callback when it is ready. After rendering, report.renderedPages holds the finished pages — the base for viewing, printing or exporting.