series.dynamicHeight Boolean (default: true)

The dynamicHeight option is supported when series.type is set to "funnel" or "pyramid".

When set to false all segments become with the same height, otherwise the height of each segment is based on its value.

Example - set the chart series dynamicHeight field

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      type: "funnel",
      dynamicHeight: true,
      data: [
        { value: 2 }, //height of this segment is 10% of the whole chart
        { value: 4 }, //height of this segment is 20% of the whole chart
        { value: 14 } //height of this segment is 70% of the whole chart
      ]
    }
  ]
});
</script>
In this article