shapes.minHeight Number
(default: 20)
Defines the minimum height the shape should have, that is, it cannot be resized to a value smaller than the given one.
Example - applying shape minimum and maximum height
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
layout: "tree",
shapes: [{
id: "1",
content: {
text: "Monday"
},
minHeight: 65,
minWidth: 65
}, {
id: "2",
content: {
text: "Tuesday"
}
}, {
id: "3",
content: {
text: "Wednesday"
}
}],
connections: [{
from: "1",
to: "2"
},{
from: "2",
to: "3"
}],
connectionDefaults: {
endCap: "ArrowEnd"
}
});
</script>