-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.ts
More file actions
36 lines (35 loc) · 1.55 KB
/
app.ts
File metadata and controls
36 lines (35 loc) · 1.55 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
34
35
36
import { Component, ViewEncapsulation } from '@angular/core';
import { DxReportDesignerModule } from 'devexpress-reporting-angular';
import 'devexpress-reporting/dx-richedit';
import deAnalyticMessages from "../dx-analytics-core.de.json";
import deReportingMessages from "../dx-reporting.de.json";
import deRichMessages from "../dx-rich.de.json";
@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';
getDesignerModelAction = "/DXXRD/GetDesignerModel"
reportName = "TestReport";
host = 'http://localhost:5000/';
CustomizeLocalization(event) {
event.args.LoadMessages(deAnalyticMessages);
event.args.LoadMessages(deReportingMessages);
event.args.LoadMessages(deRichMessages);
}
}