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