forked from boldreports/angular-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbarcode.component.ts
More file actions
24 lines (23 loc) · 759 Bytes
/
barcode.component.ts
File metadata and controls
24 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* Barcode - This sample demonstrates the types of barcode and qrcode
*/
import { Component } from '@angular/core';
import { Globals } from '../globals';
@Component({
selector: 'ej-sample',
templateUrl: './barcode.component.html',
styleUrls: ['./barcode.component.css'],
standalone: false
})
export class BarcodeComponent {
// Specifies the report Web API service URL. It is used to process the reports.
public serviceUrl = Globals.SERVICE_URL;
// Specifies the path of the RDL report file
public reportPath: string;
public toolbarSettings = Globals.TOOLBAR_OPTIONS;
public onToolbarItemClick = Globals.EDIT_REPORT;
public onExportItemClick = Globals.EXPORT_ITEM_CLICK;
constructor() {
this.reportPath = 'barcode.rdl';
}
}