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