Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
$report = new StiReport();
$report->loadFile('../reports/Christmas.mrt');
$report->process();
// Inside a JS function, emit the export code:
// function exportToPdf() {
$report->exportDocument(StiExportFormat::Pdf); // Excel, Html
echo $report->getHtml(StiHtmlMode::Scripts);
// }$report->exportDocument(StiExportFormat::Pdf) — generates the JS that exports the dashboard on the client.getHtml(StiHtmlMode::Scripts) — emits just that script, placed inside a button's click handler.