-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapp.ts
More file actions
33 lines (32 loc) · 1.42 KB
/
app.ts
File metadata and controls
33 lines (32 loc) · 1.42 KB
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
import { Component, ViewEncapsulation } from '@angular/core';
import { DxReportDesignerModule } from 'devexpress-reporting-angular';
import 'devexpress-reporting/dx-richedit';
@Component({
selector: 'app-root',
imports: [DxReportDesignerModule],
encapsulation: ViewEncapsulation.None,
templateUrl: './app.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 App {
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/';
}