seriesArray
Array of series definitions.
The series type is determined by the value of the type field. If a type value is missing, the type is assumed to be the one specified in seriesDefaults.
Each series type has a different set of options.
Info: Some options accept function as argument. They will be evaluated for each point (supplied as parameter). The theme/seriesDefaults value will be used if no value is returned.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [{
date: new Date(2016, 0, 1),
close: 41,
high: 43,
low: 39,
open: 40,
volume: 2632000
}, {
date: new Date(2016, 0, 2),
close: 42,
high: 44,
low: 40,
open: 41,
volume: 2631000
}]
},
series: [{
type: "candlestick",
openField: "open",
highField: "high",
lowField: "low",
closeField: "close",
name: "Price"
}, {
type: "column",
field: "volume",
name: "Volume",
}]
});
</script>
In this article