paneDefaults.title.margin.leftNumber(default: 0)

The left margin of the title.

Example - set the default pane title left margin

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [
    { data: [1, 2, 3] },
    { data: [1, 2, 3, 4], axis: "bottom" }
  ],
  valueAxis: [
    { pane: "top-pane" },
    { pane: "bottom-pane", name: "bottom" }
  ],
  paneDefaults: {
    title: {
      margin: {
        left: 15
      }
    }
  },
  panes: [
    { name: "top-pane",
      title: {
        text: "Top"
      }
    },
    { name: "bottom-pane",
      title: {
        text: "Bottom"
      }
    }
  ]
});
</script>
In this article
paneDefaults.title.margin.left
Not finding the help you need?
Contact Support