Hi Angel,
Thank you for your interest in Syncfusion Products.
Currently we do not have support for wrapping the Barcode text for its bounds. As a workaround we can achieve this by using the below code snippet by adding additional label below the Barcode control.
|
<syncfusion:SfBarcode x:Name="barcode"
Text="SomeLargeInputTextForQRCodeShouldBeGivenHere"
Symbology="QRCode"
BackgroundColor="White"
TextColor="Transparent"
Margin="15,0,15,15">
<syncfusion:SfBarcode.SymbologySettings>
<syncfusion:QRBarcodeSettings XDimension="6">
</syncfusion:QRBarcodeSettings>
</syncfusion:SfBarcode.SymbologySettings>
</syncfusion:SfBarcode>
<Label
Text="SomeLargeInputTextForQRCodeShouldBeGivenHere"
LineBreakMode="CharacterWrap"/> |
Please check this workaround and let us know if you have any concerns in this.
Regards,
Karthikeyan