text.font String (default: "16px Consolas, Monaco, Sans Mono, monospace, sans-serif")

The font of the text.

Example - set the font of the text

<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
  value:"123456",
  width: 300,
  text:{
    color: "red",
    font: "20px sans-serif"
  }
});
</script>
In this article