Check out the demo!
NPM registry An angular directive for Lindell's JsBarcodeInstallation
Install with NPM
``npm install --save angular-barcode
``
Import
```javascript import 'angular-barcode'; ```Or include the script in your code
```html ```Add it as a module to angular
```javascript angular.module('MyExampleApp', 'angular-barcode'); ```Usage
Default values: ```html ``` or ```html ``` or ```html ``` with $scope.bc: ```javascript $scope.bc = {format: 'CODE128',
lineColor: '#000000',
width: 2,
height: 100,
displayValue: true,
fontOptions: '',
font: 'monospace',
textAlign: 'center',
textPosition: 'bottom',
textMargin: 2,
fontSize: 20,
background: '#ffffff',
margin: 0,
marginTop: undefined,
marginBottom: undefined,
marginLeft: undefined,
marginRight: undefined,
valid: function (valid) {
}
}
```
-Take a look at the example/index.html file.
For more details you should definitely check out JSBarcode's Wiki!
Dev / Other
This package is written in ES2015 and uses webpack for bundling.