seriesDefaults.ohlc Object

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

Example - set the ohlc chart default options

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