Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
import { Viewer, Stimulsoft } from "stimulsoft-dashboards-js-react/viewer";
function App() {
var report = new Stimulsoft.Report.StiReport();
report.loadFile("Dashboards/Dashboard.mrt");
var options = new Stimulsoft.Viewer.StiViewerOptions();
options.appearance.theme = Stimulsoft.Viewer.StiViewerTheme.Office2022LightGrayTeal;
options.appearance.fullScreenMode = true;
options.toolbar.showOpenButton = false;
options.exports.showExportToPdf = false;
return <Viewer options={options} report={report} />;
}toolbar.showOpenButton / exports.showExportToPdf — show or hide individual toolbar and export commands.appearance.theme / fullScreenMode — the overall look of the viewer.