subtitle.position String (default: "top")

The position of the subtitle.

  • "bottom" - the title is positioned on the bottom.
  • "top" - the title is positioned on the top.

By default, the subtitle is placed in the same position as the title.

Example - set the chart subtitle position

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