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: 5

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "rangeArea",
    data: [
      { from: 1, to: 2 },
      { from: 2, to: 3 },
      { from: 3, to: 4 }
    ],
    labels: {
      to: {
        visible: true,
        margin: 10
      }
    }
  }]
});
</script>

The bottom margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "rangeArea",
    data: [
      { from: 1, to: 2 },
      { from: 2, to: 3 },
      { from: 3, to: 4 }
    ],
    labels: {
      to: {
        visible: true,
        margin: {
          bottom: 15
        }
      }
    }
  }]
});
</script>

The left margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "rangeArea",
    data: [
      { from: 1, to: 2 },
      { from: 2, to: 3 },
      { from: 3, to: 4 }
    ],
    labels: {
      to: {
        visible: true,
        margin: {
          left: 20
        }
      }
    }
  }]
});
</script>

The right margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "rangeArea",
    data: [
      { from: 1, to: 2 },
      { from: 2, to: 3 },
      { from: 3, to: 4 }
    ],
    labels: {
      to: {
        visible: true,
        margin: {
          right: 10
        }
      }
    }
  }]
});
</script>

The top margin of the to labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [{
    type: "rangeArea",
    data: [
      { from: 1, to: 2 },
      { from: 2, to: 3 },
      { from: 3, to: 4 }
    ],
    labels: {
      to: {
        visible: true,
        margin: {
          top: 8
        }
      }
    }
  }]
});
</script>