series.downColor String|Function
The series color when the open value is greater than the close value.
The
downColor
option is supported when series.type is set to "candlestick".
Example - set the chart series down color
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [ {
type: "candlestick",
downColor: "green",
color: "red",
data: [
{ open: 4, high: 5, low: 2, close: 3 },
{ open: 3, high: 5, low: 2, close: 4 }
]
}]
});
</script>