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

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

Default: 5

<div id="chart"></div>
<script>
  $("#chart").kendoChart({
    series: [
      {
        labels: {
          visible: true,
          format: "{0:C}",
          margin:20
        },
        data: [1, 2, 3]
      }
    ]
  });
</script>

The bottom margin of the labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      margin: {
        bottom: 10
      },
      data: [1, 2, 3]
    }
  ]
});
</script>

The left margin of the labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      margin: {
        left: 10
      },
      data: [1, 2, 3]
    }
  ]
});
</script>

The right margin of the labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      margin: {
        right: 10
      },
      data: [1, 2, 3]
    }
  ]
});
</script>

The top margin of the labels.

Default: 0

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    {
      margin: {
        top: 10
      },
      data: [1, 2, 3]
    }
  ]
});
</script>