subtitle.border Object
The border of the subtitle.
Example - set the chart subtitle border
<div id="chart"></div>
<script>
$("#chart").kendoStockChart({
title: {
text: "Title"
},
subtitle: {
text: "Subtitle",
border: {
color: "green",
width: 2
}
}
});
</script>