The series color 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",
            downColor: "red"
        }]
    },
    dataSource: {
        data: [
            { date: new Date("2016/01/01"), open: 3, high: 4, low: 1, close: 2 },
            { date: new Date("2016/01/02"), open: 2, high: 3, low: 1, close: 1.5 }
        ]
    }
});
</script>
In this article
navigator.series.downColor
Not finding the help you need?
Contact Support