shapes.content.relativePaddingObject|Number
The relative padding of the content as a percentage of the shape size.
Example
<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
shapes: [{
content: {
text: "Relative Padded Text",
relativePadding: 0.1 // 10% of shape size
}
}]
});
</script>
In this article