seriesDefaults.columnObject
The column configuration options. The default options for all column series. For more details see the series options.
Example
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
dateField: "date",
seriesDefaults: {
column: {
gap: 0.5,
spacing: 0.2
}
},
series: [{
type: "column",
color: "yellow",
data: [
{ date: new Date(2000, 1, 1), value: 300 },
{ date: new Date(2000, 1, 2), value: 200 }
]
}]
});
</script>