series.pattern.gap Number

The gap between the elements of the pattern.

Example - set the series pattern gap

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [ {
    pattern: {
      type: 'grid',
      gap: 10
    },
    data: [ 1, 2, 3 ]
  }]
});
</script>
In this article