subtitle.margin.bottom Number
(default: 0)
The bottom margin of the subtitle.
Example - set the chart subtitle bottom margin
<div id="chart"></div>
<script>
$("#chart").kendoChart({
title: {
text: "Title"
},
subtitle: {
text: "Subtitle",
margin: {
bottom: 10
}
},
series: [
{ data: [1, 2, 3] }
]
});
</script>