New to Kendo UI for jQueryStart a free 30-day trial

A boolean value indicating if the series should be stacked.

The stack options is supported when series.type is set to "bar", "column", "line", "area", "verticalLine", "verticalArea", "radarLine", "radarArea" and "radarColumn".

seriesDefaults.stack

Boolean|Object

Default: false

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    stack: true
  },
  series: [
    { data: [ 1, 2 , 3] },
    { data: [ 4, 5 , 6] }
  ]
});
</script>

The type of stack to plot. The following types are supported:

  • "normal" - the value of the stack is the sum of all points in the category (or group)
  • "100%" - the value of the stack is always 100% (1.00). Points within the category (or group) are represented as percentages.

Default: "normal"

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    stack: { type: "100%" }
  },
  series: [
    { data: [ 1, 2 ] },
    { data: [ 10, 20 ] }
  ]
});
</script>