seriesDefaults.candlestick Object

The candlestick chart series options. Accepts all values supported by the series option.

Example - set the candlestick chart default options

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  seriesDefaults: {
    candlestick: {
      color: "red",
      opacity: 0.3
    }
  },
  series: [
    { type: "candlestick", data: [ [1, 2, 0.5, 1.5] ] }
  ]
});
</script>
In this article