errorCorrection String
(default: "L")
The error correction level used to encode the value.
The possible values are:
- "L" - approximately 7% of the codewords can be restored.
- "M" - approximately 15% of the codewords can be restored.
- "Q" - approximately 25% of the codewords can be restored.
- "H" - approximately 30% of the codewords can be restored.
Example
<div id="qrCode"></div>
<script>
$("#qrCode").kendoQRCode({
value: "https://demos.telerik.com/kendo-ui/dataviz/overview/index.html",
errorCorrection: "H"
});
</script>