series.typeString

The type of the series. Available types:

  • area
  • candlestick
  • column
  • exponentialTrendline
  • line
  • linearTrendline
  • logarithmicTrendline
  • movingAverageTrendline
  • ohlc
  • polynomialTrendline
  • powerTrendline

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dataSource: {
        data: [{
            date: new Date(2016, 0, 1),
            close: 41
        }, {
            date: new Date(2016, 0, 2),
            close: 42
        }]
    },
    series: [{
        type: "line",
        field: "close",
        name: "Price"
    }]
});
</script>
In this article
series.type
Not finding the help you need?
Contact Support