text.visibleBoolean(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
  },
  height: 300
});
</script>In this article