zoomMinNumber
(default: 0.1)
The minimum zoom level in percentages. The user will not be allowed to zoom out past this level. You can see an example in zoomMax.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
zoomMin: 0.5, // minimum 50% zoom
shapes: [{
id: "1",
x: 100,
y: 100,
content: { text: "Zoom limited shape" }
}]
});
</script>
In this article