The DisplayText property does not seem to be working. Would you have any input on what could be wrong?
|
<input @bind="BarcodeValue" @onclick=@ButtonClicked />
<SfQRCodeGenerator Width="200px" Height="150px" Value="@BarcodeValue">
<QRCodeGeneratorDisplayText text="@BarcodeValue"></QRCodeGeneratorDisplayText>
</SfQRCodeGenerator>
@code {
public int val = 0;
public string BarcodeValue = "SYNCFUSION";
void ButtonClicked()
{
val = 0;
}
} |
My question is that I do not want the text to show below the barcode. However the system shows the text below the barcode. How do I ensure that the text does not show below the barcode?
|
<SfQRCodeGenerator Width="200px" Height="150px" Value="@BarcodeValue">
<QRCodeGeneratorDisplayText text="@BarcodeValue" Visibility="false"></QRCodeGeneratorDisplayText>
</SfQRCodeGenerator> |