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 viewer = new Stimulsoft.Viewer.StiViewer(null, "StiViewer", false);
var report = new Stimulsoft.Report.StiReport();
report.loadFile("../reports/SimpleList.mrt");
viewer.report = report;
viewer.renderHtml();The StiViewer constructor takes options, an element id and a full-screen flag. Assigning viewer.report gives it the report (the viewer renders it automatically if needed), and renderHtml() draws the viewer into the page — optionally into a specific element by id.