series.spacingNumber(default: 0.4)
Space between points as proportion of the point width.
Available for column, candlestick and ohlc series.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dataSource: {
data: [
{ date: "2013/01/01", open: 40, high: 45, low: 38, close: 42 },
{ date: "2013/01/02", open: 42, high: 48, low: 40, close: 45 }
]
},
series: [{
type: "column",
field: "close",
spacing: 0.8
}],
categoryAxis: {
field: "date"
}
});
</script>
In this article