subtitle.visible Boolean (default: true)

If set to true the chart will display the subtitle. By default the subtitle will be displayed.

Example - hide the subtitle

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