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 Stimulsoft = require('stimulsoft-dashboards-js');
var report = Stimulsoft.Report.StiReport.createNewDashboard();
report.loadFile("Dashboard.mrt");
report.exportDocumentAsync(function (pdfData) {
var buffer = Buffer.from(pdfData);
require('fs').writeFileSync('./Dashboard.pdf', buffer);
}, Stimulsoft.Report.StiExportFormat.Pdf);require('stimulsoft-dashboards-js') — the dashboard engine as a Node module.exportDocumentAsync(callback, StiExportFormat.Pdf) → Buffer.from(data) + fs.writeFileSync — render and save the file.