subtitle.padding.bottom Number (default: 0)

The bottom padding of the subtitle.

Example - set the chart subtitle bottom padding

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  title: {
    text: "Title"
  },
  subtitle: {
    text: "Title",
    padding: {
      bottom: 10
    }
  },
  series: [
    { data: [1, 2, 3] }
  ]
});
</script>
In this article