series.explodeField String (default: "explode")

The data item field which contains a boolean value indicating whether the sector is exploded.

The explodeField option is supported when series.type is set to "donut" or "pie".

Example - set the chart series explode field

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "pie",
      explodeField: "isExploded",
      data: [
        { value: 1, isExploded: true },
        { value: 2 }, // isExpaded is missing, "false" is asumed
        { value: 3, isExploded: false }
      ]
    }
  ]
});
</script>
In this article