subtitle.color String

The text color of the subtitle. Accepts a valid CSS color string, including hex and rgb.

Example - set the subtitle color as a hex string

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