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/SimpleList.mrt'))
report.render()
exportFormat = StiExportFormat.PDF # or EXCEL, HTML, DOCUMENT
report.exportDocument(exportFormat)report.render() then report.exportDocument(format) — build and export using the JavaScript engine.StiExportFormat enum (PDF/EXCEL/HTML/…) selects the output type, driven here by a GET parameter.