image String
Specifies an image URL or dataURL that would be used to populate the src
attribute of the avatar <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>