ariaRole Boolean (default: false)

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

Example

<div id="pb"></div>
<script>
    $("#pb").kendoProgressBar({
        label: "label",
        ariaRole: true
    });
</script>
In this article