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.
$reportJson = json_decode(file_get_contents('../reports/Christmas.mrt'));
$reportJson->ReportAlias = 'Dashboard Alias from Server-Side';
$reportJson->CalculationMode = 'Interpretation';
$report = new StiReport();
$report->load($reportJson);
$report->print();json_decode(file_get_contents(...)) — read the dashboard template as a JSON object.$report->load($reportJson) — load the modified object; changed properties take effect on the client.