Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
@Component({
selector: "changing-the-viewer-theme",
imports: [Viewer],
template: `<sti-viewer [report]="report" [options]="viewerOptions"></sti-viewer>`
})
export class ChangingTheViewerTheme {
report = new Stimulsoft.Report.StiReport();
viewerOptions = new Stimulsoft.Viewer.StiViewerOptions();
constructor() {
this.report.loadFile("Reports/SimpleList.mrt");
this.viewerOptions.appearance.theme = Stimulsoft.Viewer.StiViewerTheme.Office2022WhiteViolet;
this.viewerOptions.appearance.fullScreenMode = true;
}
}The theme comes from the StiViewerTheme enumeration; dozens of light and dark variants are available to match your application.