Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
@Component({
imports: [Viewer],
template: `
<sti-viewer [report]="report1"></sti-viewer>
<sti-viewer [report]="report2"></sti-viewer>`
})
export class Example {
report1: Stimulsoft.Report.StiReport;
report2: Stimulsoft.Report.StiReport;
constructor() {
this.report1 = new Stimulsoft.Report.StiReport();
this.report1.loadFile("Dashboards/Dashboard.mrt");
this.report2 = new Stimulsoft.Report.StiReport();
this.report2.loadFile("Dashboards/Orders.mrt");
}
}Viewer gets its own StiReport, so the two dashboards render and operate independently.