alt String
A text description of the Avatar image. When type="image"
is configured this value will be used to populate the alt
attribute of the <img>
element.
Example
<div id="avatar"></div>
<script>
$("#avatar").kendoAvatar({
type: "image",
image: "https://demos.telerik.com/kendo-ui/content/web/Customers/RICSU.jpg",
alt: "John Doe"
});
</script>