minHeight Number (default: 20)

Defines the minimum height the shape should have, i.e. it cannot be resized to a value smaller than the given one.

Example - specifying a minimum height for the shape

<div id="diagram"></div>
<script>
  var Shape = kendo.dataviz.diagram.Shape;
  $("#diagram").kendoDiagram();
  var diagram = $("#diagram").data("kendoDiagram");

  var shape = new Shape({
    id: 1,
    x: 20,
    y: 20,
    fill: "#c0f0fc",
    minHeight: 60
  });
  diagram.addShape(shape);
</script>
In this article