ariaRole Boolean (default: false)

If set to true the Circular ProgressBar will have its role attribute set to progressbar. It will also render its aria-valuemin, aria-valuemax, and aria-valuenow attributes.

Example

<label id="label">This is the label</label>
<div id="progressbar"></div>
<script>
    $("#progressbar").kendoCircularProgressBar({
        labelId: "label",
        value: 50,
        ariaRole: true
    });
</script>
In this article