labelString
The label that would be used as a aria-label for the Circular ProgressBar element. Will be applied only if ariaRole is set to true.
Example
<div id="progressbar"></div>
<script>
$("#progressbar").kendoCircularProgressBar({
label: "label",
value: 30,
ariaRole: true
});
</script>