seriesDefaults.typeString

The default type of the series.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    seriesDefaults: {
        type: "area"
    },
    data: [
            { date: new Date(2023, 0, 1), value: 10 },
            { date: new Date(2023, 0, 2), value: 20 },
            { date: new Date(2023, 0, 3), value: 15 }
    ],
});
</script>

The supported values are:

  • area
  • column
  • line
  • candlestick, ohlc
  • bullet
In this article
seriesDefaults.type
Not finding the help you need?
Contact Support