legend Object

The chart legend configuration options.

Example - configure the chart legend

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  legend: {
    background: "green",
    position: "left",
    labels: {
      font: "20px sans-serif",
      color: "red"
    }
  },
  series: [
    { name: "Series 1", data: [1, 2, 3] },
    { name: "Series 2", data: [3, 4, 5] }
  ]
});
</script>
In this article