subtitle.background String
(default: "white")
The background color of the subtitle. Accepts a valid CSS color string, including hex and rgb.
Example - configure the chart subtitle alignment
<div id="chart"></div>
<script>
$("#chart").kendoStockChart({
title: {
text: "Title"
},
subtitle: {
text: "Subtitle",
background: "green"
}
});
</script>