series.segmentSpacing Number
(default: 0)
The space in pixels between the different segments of the funnel and pyramid charts.
The
segmentSpacing
option is supported when series.type is set to "funnel" or "pyramid".
Example - set the chart series segmentSpacing field
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{
type: "funnel",
segmentSpacing: 20,
data: [
{ value: 1 },
{ value: 2 },
{ value: 3 }
]
}
]
});
</script>