heightNumber
The height of the image.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
type: "image",
x: 100,
y: 100,
source: "https://demos.telerik.com/kendo-ui/content/dataviz/diagram/people/liam.png",
height: 100,
width: 100
}]
});
</script>