subtitle.paddingNumber|Object(default: 5)

The padding of the subtitle. A numeric value will set all margins.

Example - set the chart subtitle padding as a number

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