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