Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
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.