series.labels.distance Number (default: 35)

The distance of the labels when series.type is set to "donut" or "pie".

Example - set the chart series label distance

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [ {
    labels: {
      visible: true,
      distance: 70
    },
    type: "pie",
    data: [1, 2, 3, 4, 5, 6]
  }]
});
</script>
In this article