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