shapes.content.textWrapString
Configures the text wrapping behavior in the shape. Supported values are "nowrap" and "wrap".
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
content: {
text: "This is a long text that should wrap within the shape",
textWrap: "wrap"
},
width: 120
}]
});
</script>
In this article