border Object

The border of the barcode area.

Example - set the border of the barcode

<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
  value:"123456",
  width: 300,
  border: {
    width: 2,
    dashType: "solid",
    color: "black"
  }
});
</script>

border.color String (default: "black")

The color of the border. Any valid CSS color string will work here, including hex and rgb.

border.dashType String (default: "solid")

The dash type of the border.

border.width Number (default: 0)

The width of the border.

In this article