seriesDefaults.gapNumber(default: 1.5)

The distance between category clusters.

Example

<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
    dateField: "date",
    seriesDefaults: {
         column: {
           gap: 0.5,
         }
      },
    series: [{
        type: "column",
      	color: "yellow",
        data: [
            { date: new Date(2000, 1, 1), value: 300 },
            { date: new Date(2000, 1, 2), value: 200 }
        ]
    }]
});
</script>
In this article
seriesDefaults.gap
Not finding the help you need?
Contact Support