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").kendoChart({
  title: {
    text: "Title",
    margin: {
      left: 10
    }
  },
  subtitle: {
    text: "Subtitle"
  },
  series: [
    { data: [1, 2, 3] }
  ]
});
</script>
In this article