subtitle.padding.bottom Number
(default: 0)
The bottom padding of the subtitle.
Example - set the chart subtitle bottom padding
<div id="chart"></div>
<script>
$("#chart").kendoStockChart({
title: {
text: "Title"
},
subtitle: {
text: "Title",
padding: {
bottom: 10
}
}
});
</script>