subtitle.padding.right Number (default: 0)

The right padding of the subtitle.

Example - set the chart subtitle right padding

<div id="chart"></div>
<script>
$("#chart").kendoStockChart({
  title: {
    text: "Title"
  },
  subtitle: {
    text: "Title",
    padding: {
      right: 10
    }
  }
});
</script>
In this article