Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var Stimulsoft = require('stimulsoft-reports-js');
var report = new Stimulsoft.Report.StiReport();
report.loadFile("SimpleList.mrt");
report.renderAsync(function () {
console.log("Pages count: ", report.renderedPages.count);
report.saveDocumentFile("SimpleList.mdc");
});renderAsync builds the document without blocking, and saveDocumentFile writes the rendered result (an .mdc file) to disk. That file can be reloaded and displayed instantly without re-rendering — useful for pre-generating reports on a schedule.