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();
$viewer->options->appearance->fullScreenMode = true;
$viewer->options->appearance->theme = StiViewerTheme::Office2022BlackGreen;
$viewer->options->toolbar->displayMode = StiToolbarDisplayMode::Separated;
$viewer->options->toolbar->showFullScreenButton = false;
$viewer->process();options->appearance->theme — sets the interface theme from the StiViewerTheme enumeration (here a dark green theme).options->appearance->fullScreenMode — makes the viewer occupy the whole browser window.options->toolbar->displayMode — controls how toolbar items are grouped (here separated rows).options->toolbar->showFullScreenButton — hides or shows an individual toolbar button.options->appearance and options->toolbar groups mirror the JavaScript viewer options; the theme comes from StiViewerTheme, so the viewer matches the look of your site.