navigator.series.typeString
The type of the series. Available types:
- candlestick, ohlc
- column
- bullet
- area
- line
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
navigator: {
series: [{
type: "line",
field: "value",
categoryField: "date"
}]
},
dataSource: {
data: [
{ date: new Date("2016/01/01"), value: 1 },
{ date: new Date("2016/01/02"), value: 2 }
]
}
});
</script>
In this article