Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var Stimulsoft = require('stimulsoft-reports-js');
var report = new Stimulsoft.Report.StiReport();
report.loadFile("SimpleList.mrt");
report.renderAsync(() => {
var htmlString = report.exportDocument(Stimulsoft.Report.StiExportFormat.Html);
fs.writeFileSync('./SimpleList.html', htmlString);
});For HTML the synchronous exportDocument returns the markup as a string, which is written to a file with fs.writeFileSync. Passing a different StiExportFormat value exports to PDF, Excel, Word and other formats the same way.