An angular directive for lindell's JsBarcode
npm install angular-barcodenpm 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) {
}
}
``