text.visible Boolean (default:true)

If set to false the barcode will not display the value as a text below the barcode lines.

Example

<div id="barcode"></div>
<script>
$("#barcode").kendoBarcode({
  value:"123456",
  text:{
    visible: false
  }
});
</script>
In this article