subtitle Object|String

The chart subtitle configuration options or text.

Example - set the chart title and subtitle as a string

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

Example - configure the chart title and subtitle

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