legend.title.marginNumber|Object(default: 5)

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

Example

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  legend: {
    title: {
      text: "Legend",
      margin: {
        top: 10,
        bottom: 5,
        left: 15,
        right: 15
      }
    }
  },
  series: [
    { name: "Series 1", data: [1, 2, 3] },
    { name: "Series 2", data: [4, 5, 6] }
  ]
});
</script>