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.
import { Component } from "@angular/core";
import { Designer, Stimulsoft } from "stimulsoft-dashboards-js-angular/designer";
@Component({
imports: [Designer],
template: `<sti-designer [(report)]="report" [options]="options"></sti-designer>`
})
export class Example {
report: Stimulsoft.Report.StiReport;
options: Stimulsoft.Designer.StiDesignerOptions;
constructor() {
this.report = new Stimulsoft.Report.StiReport();
this.report.loadFile("Dashboards/Dashboard.mrt");
this.options = new Stimulsoft.Designer.StiDesignerOptions();
this.options.appearance.theme = Stimulsoft.Designer.StiDesignerTheme.Office2022LightGrayTeal;
this.options.appearance.fullScreenMode = true;
this.options.toolbar.showPreviewButton = false;
this.options.toolbar.showFileMenu = false;
this.options.components.showImage = false;
this.options.components.showShape = false;
this.options.components.showPanel = false;
}
}toolbar.showPreviewButton / toolbar.showFileMenu — hide toolbar and menu commands.components.showImage / showShape / showPanel … — remove items from the component palette.