series.fieldString

The data field containing the series value.

Example

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