Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
<script src="Scripts/stimulsoft.reports.js"></script>
<script src="Scripts/stimulsoft.viewer.js"></script>
<script type="text/javascript">
function onLoad() {
var viewer = new Stimulsoft.Viewer.StiViewer(new Stimulsoft.Viewer.StiViewerOptions(), "StiViewer", false);
viewer.renderHtml("content");
var report = new Stimulsoft.Report.StiReport();
report.loadFile("/Reports/SimpleList.mrt");
viewer.report = report;
}
</script>StiViewer(options, id, false) — the client viewer; renderHtml("content") mounts it into the control's element.report.loadFile("/Reports/SimpleList.mrt") — loads a template served by the Wisej app.