-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.component.ts
40 lines (38 loc) · 1.56 KB
/
app.component.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterOutlet } from '@angular/router';
import { DxReportDesignerModule } from 'devexpress-reporting-angular';
import 'devexpress-reporting/dx-richedit';
@Component({
selector: 'app-root',
encapsulation: ViewEncapsulation.None,
standalone: true,
imports: [
CommonModule,
RouterOutlet,
DxReportDesignerModule],
templateUrl: './app.component.html',
styleUrls: [
"../../node_modules/ace-builds/css/ace.css",
"../../node_modules/ace-builds/css/theme/dreamweaver.css",
"../../node_modules/ace-builds/css/theme/ambiance.css",
"../../node_modules/devextreme/dist/css/dx.light.css",
"../../node_modules/devexpress-richedit/dist/dx.richedit.css",
"../../node_modules/@devexpress/analytics-core/dist/css/dx-analytics.common.css",
"../../node_modules/@devexpress/analytics-core/dist/css/dx-analytics.light.css",
"../../node_modules/@devexpress/analytics-core/dist/css/dx-querybuilder.css",
"../../node_modules/devexpress-reporting/dist/css/dx-webdocumentviewer.css",
"../../node_modules/devexpress-reporting/dist/css/dx-reportdesigner.css"
]
})
export class AppComponent {
title = 'DXReportDesignerSample';
// If you use the ASP.NET Core backend:
getDesignerModelAction = "/DXXRD/GetDesignerModel"
// If you use the ASP.NET MVC backend:
//getDesignerModelAction = "/ReportDesigner/GetReportDesignerModel";
// The report name.
reportName = "TestReport";
// The backend application URL.
host = 'http://localhost:5000/';
}