series.stackBoolean|String|Object(default: false)

A boolean value indicating if the series should be stacked. A string value is interpreted as series.stack.group.

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

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [
            { date: "2013/01/01", value1: 40, value2: 20 },
            { date: "2013/01/02", value1: 42, value2: 25 }
        ]
    },
    series: [{
        type: "column",
        field: "value1",
        stack: true
    }, {
        type: "column", 
        field: "value2",
        stack: true
    }],
    categoryAxis: {
        field: "date"
    }
});
</script>

Stack settings of the first series are applied to the rest of the series.

In this article
series.stackRelated Properties
Not finding the help you need?
Contact Support