subtitle.margin.left Number (default: 0)

The left margin of the subtitle.

Example - set the chart subtitle left margin

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