series.padding Number
The padding around the chart (equal on all sides).
The
padding
option is supported when series.type is set to "donut" or "pie".
Example - set the donut chart series padding
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
type: "donut",
padding: 60,
data: [ 1, 2, 3]
}]
});
</script>