Vilochane / yii2-barcode-generator-8-types

This extension based on "Simple jQuery Based Barcode Generator" Wrapper for BarCode Coder Library (BCC Library Version 2.0) by DEMONTE Jean-Baptiste, HOUREZ Jonathan.
9 stars 13 forks source link

Text Beneath Bar Code #3

Closed arjun-storybox closed 6 years ago

arjun-storybox commented 8 years ago

I generated the barcodes successfully , but there is a text appearing beneath the barcode. selection_006

My Code

          `<?php
                 BarcodeGenerator::widget([
                    'elementId' => 'barcodeElement',
                    'value' => $model->asset_id,
                    'type' => 'code128',
                    'rectangular' => true,
                     'settings' => [
                         'output' => 'canvas'
                     ]
                ]);
            ?>`

How can i remove the text ?