shapeDefaults.height Number
(default: 100)
Defines the default height of shapes in the Diagram.
Example - changing the default height of Diagram shapes
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
layout: "tree",
shapeDefaults: {
height: 50
},
shapes: [{
id: "1",
content: {
text: "Monday"
}
}, {
id: "2",
content: {
text: "Tuesday"
}
}, {
id: "3",
content: {
text: "Wednesday"
}
}],
connections: [{
from: "1",
to: "2"
},{
from: "2",
to: "3"
}],
connectionDefaults: {
endCap: "ArrowEnd"
}
});
</script>