This example shows how to integrate the report designer into an Angular application. First of all, load scripts:
import { Stimulsoft } from 'stimulsoft-reports-js/Scripts/stimulsoft.designer'

Then, create a component:
@Component({
selector: 'app-root',
template: `<div>
				<h2>Stimulsoft Reports.JS Designer</h2>
				<div id="designer"></div>
			</div>`
})

...

After that, create AppComponent class with the report designer integration:
...

export class AppComponent {
	options: any;
	designer: any;

	ngOnInit() {
		console.log('Loading Designer view');

		console.log('Set full screen mode for the designer');
		this.options = new Stimulsoft.Designer.StiDesignerOptions();
		this.options.appearance.fullScreenMode = false;

		console.log('Create the report designer with specified options');
		this.designer = new Stimulsoft.Designer.StiDesigner(this.options, 'StiDesigner', false);

		console.log('Edit report template in the designer');
		this.designer.report = new Stimulsoft.Report.StiReport();

		console.log('Load report from url');
		this.designer.report.loadFile('/reports/SimpleList.mrt');

		console.log('Rendering the designer to selected element');
		this.designer.renderHtml('designer');

		console.log('Loading completed successfully!');
	}

...

Finally, call constructor():
...

	constructor() {
	}
}

На скриншоте ниже Вы можете увидеть результат выполнения данного кода:

Integrating the Report Designer into an Application

Используя этот сайт, вы соглашаетесь на использование файлов Cookie для аналитики и персонализированного контента. Файлы Cookie хранят полезную информацию на вашем компьютере, чтобы помочь нам повысить эффективность и удобство использования. Для получения дополнительной информации, пожалуйста, прочтите Конфиденциальность и Использование Cookie.