subtitle.margin.top Number (default: 0)

The top margin of the subtitle.

Example - set the chart subtitle top margin

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