You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -58,7 +55,7 @@ The Blazor Barcode provides various parameters that allow you to configure the c
58
55
|`QRCodeEncoding`|`enum`| The encoding mode used to encode the value. |
59
56
|`QRCodeErrorCorrection`|`enum`| The error correction level used to encode the value. |
60
57
|`Value`|`string`| Defines the initial value of the QRCode. |
61
-
|`Size`|`string`| Specifies the size (`Width` and `Height`) of a QR code in pixels (i.e. "200px") as the QRCode is a square. You can read more details for the dimension properties in the [Dimensions article](slug:common-features/dimensions). Setting both `Size` and `Width` and/or `Height` will throw an error. Setting different values to `Width` and `Height` will also cause an issue. |
58
+
|`Size`|`string`| Specifies the size (`Width` and `Height`) of a QR code in pixels (i.e. "200px") as the QRCode is a square. You can read more details for the dimension properties in the [Dimensions article](slug:common-features/dimensions). Setting both `Size` and `Width` and/or `Height` will throw an error. Setting different values to `Width` and `Height` will also cause an issue. To set an optimal `Size`, consider the expected scanning distance and data capacity. |
62
59
|`Width`|`string`| Sets the width of the QRCode. If `Height` is set and the `Size` property is not set, the same value as `Width` should be set to `Height`. |
63
60
|`Height`|`string`| Sets the height of the QRCode. If `Height` is set and the `Size` property is not set, the same value as `Height` should be set to `Width`. |
64
61
|`Class`|`string`| The CSS class that will be rendered on the main wrapping element of the QRCode component. |
@@ -84,7 +81,7 @@ The nested `QRCodeBorder` tag exposes parameters that enable you to customize th
84
81
| Parameter | Type | Description |
85
82
| ----------- | ----------- | ----------- |
86
83
|`Color`|`string`| The color of the border. Accepts a valid CSS color string, including HEX and RGB. |
87
-
|`Width`|`double`| The width of the border in pixels. By default the border width is set to zero which means that the border will not be visible. |
84
+
|`Width`|`double`| The width of the border in pixels. The default value is `0` and the border is not visible. The QR Code border is part of the component `Size`. Thus, a wider border may require a larger `Size`. |
0 commit comments