type String
(default: "code39")
The symbology (encoding) the barcode will use.
The supported values are:
- EAN8
- EAN13
- UPCE
- UPCA
- Code11
- Code39
- Code39Extended
- Code93
- Code93Extended
- Code128
- Code128A
- Code128B
- Code128C
- GS1-128
- MSImod10
- MSImod11
- MSImod1010
- MSImod1110
- POSTNET
Example
<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
type: "code128",
value:"Hello World",
width: 400
});
</script>