background String (default: "white")

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

Example

<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
  width: 300,
  value: "HELLO WORLD",
  background: "#2eb3a6"
});
</script>
In this article