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.
$viewer = new StiViewer();
// Route events to the handler controller
$viewer->handler->url = "/handler";
$viewer->onPrepareVariables = true;
$report = new StiReport();
$report->loadFile("reports/SimpleList.mrt");
$viewer->report = $report;$viewer->handler->url = "/handler" — sends the viewer's server callbacks to a Laravel route/controller.$viewer->onPrepareVariables = true — enables the variables event so the controller can supply values.$report->loadFile(...) — generates the client code to load the template; the report loads in the browser.