shapes.content.relativePadding.bottomNumber

The bottom relative padding of the content as a percentage.

Example

<div id="diagram"></div>
<script>
$("#diagram").kendoDiagram({
    shapes: [{
      content: {
        text: "Bottom Relative Padded",
        relativePadding: { bottom: 0.15 }  // 15% of shape height
      }
    }]
});
</script>