subtitle.border.width Number
(default: 0)
The width of the border in pixels. By default the border width is set to zero which means that the border will not appear.
Example - set the chart subtitle border width
<div id="chart"></div>
<script>
$("#chart").kendoStockChart({
title: {
text: "Title"
},
subtitle: {
text: "Subtitle",
border: {
width: 2
}
}
});
</script>