shapes.content.padding.bottomNumber
The bottom padding of the content.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
content: {
text: "Bottom Padded Text",
padding: { bottom: 15 }
}
}]
});
</script>
In this article