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").kendoChart({
  title: {
    text: "Chart Title"
  },
  subtitle: {
    text: "Chart Subtitle",
    color: "#aa00bb"
  },
  series: [{
     data: [1, 2, 3]
  }]
});
</script>
In this article