seriesDefaults.ohlcObject
The ohlc configuration options. The default options for all ohlc series. For more details see the series options.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
seriesDefaults: {
ohlc: {
gap: 0.3,
spacing: 0.1
}
},
series: [{
type: "ohlc",
data: [[new Date(2023, 0, 1), 100, 110, 95, 105]]
}]
});
</script>