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.
report = StiReport()
if report.processRequest(request):
return report.getFrameworkResponse()
report.loadFile(url_for('static', filename='reports/WebsiteAnalytics.mrt'))
exportFormat = StiExportFormat.PDF # or EXCEL, HTML, DOCUMENT
report.exportDocument(exportFormat)report.exportDocument(format) — emits the client-side JS that exports the dashboard.StiExportFormat enum (PDF/EXCEL/HTML/…) selects the output type, driven here by a request parameter.