The data field containing the color applied when the open value is greater than the close value.

** Available for candlestick series only **

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    navigator: {
        series: [{
            type: "candlestick",
            openField: "open",
            highField: "high",
            lowField: "low",
            closeField: "close",
            downColorField: "downColor"
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 3, high: 4, low: 1, close: 2, downColor: "red" },
            { date: new Date("2016/01/02"), open: 2, high: 3, low: 1, close: 1.5, downColor: "orange" }
        ]
    }
});
</script>
In this article
navigator.series.downColorField
Not finding the help you need?
Contact Support