labelId String

The ID of the element that will be used as a label of the 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="pb"></div>
<script>
    $("#pb").kendoProgressBar({
        labelId: "label",
        ariaRole: true
    });
</script>
In this article