series.zIndexNumber
An optional Z-index that can be used to change the default stacking order of series.
The series with the highest Z-index will be placed on top.
Series with no Z-index will use the default stacking order based on series type.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: new Date(2000, 1, 1), open: 10, high: 15, low: 8, close: 12 },
{ date: new Date(2000, 1, 2), open: 12, high: 18, low: 10, close: 16 }
]
},
dateField: "date",
series: [{
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close",
zIndex: 1
}, {
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close",
zIndex: 2
}]
});
</script>
For example line series will be on top with bar and area following below.