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 = new StiReport();
$report->process();
$report->loadFile('../reports/SimpleList.mrt');
$report->render();
// inside JS-invoked functions:
$report->exportDocument(StiExportFormat::Pdf);
echo $report->getHtml(StiHtmlMode::Scripts);process() / loadFile() / render() — set up, load and render the report on the client.exportDocument(StiExportFormat::Pdf) — exports the rendered document; change the StiExportFormat constant for Excel, Word, HTML and more.getHtml(StiHtmlMode::Scripts) — emits the scripts that trigger the export in the browser.exportDocument takes a StiExportFormat value; emitting the resulting scripts triggers the export in the browser. Changing the format constant exports to Excel, Word, HTML and other formats the same way.