New to Kendo UI for jQueryStart a free 30-day trial

The margin of the to labels. A numeric value will set all margins.

Default: 0

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [{
      type: "rangeColumn",
      data: [[5, 10], [7, 15], [9, 20]],
      labels: {
        to: {
          margin: 10,
          background: "lightblue",
          visible: true
        }
      }
    }]
  });
</script>

The bottom margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [{
      type: "rangeColumn",
      data: [[5, 10], [7, 15], [9, 20]],
      labels: {
        to: {
          margin: {
            bottom: 15
          },
          background: "lightblue",
          visible: true
        }
      }
    }]
  });
</script>

The left margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [{
      type: "rangeColumn",
      data: [[5, 10], [7, 15], [9, 20]],
      labels: {
        to: {
          margin: {
            left: 15
          },
          background: "lightblue",
          visible: true
        }
      }
    }]
  });
</script>

The right margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [{
      type: "rangeColumn",
      data: [[5, 10], [7, 15], [9, 20]],
      labels: {
        to: {
          margin: {
            right: 15
          },
          background: "lightblue",
          visible: true
        }
      }
    }]
  });
</script>

The top margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [{
      type: "rangeColumn",
      data: [[5, 10], [7, 15], [9, 20]],
      labels: {
        to: {
          margin: {
            top: 15
          },
          background: "lightblue",
          visible: true
        }
      }
    }]
  });
</script>