series.labels Object

The chart series label configuration.

The chart displays the series labels when the series.labels.visible option is set to true.

Example - configure the chart series label

<div id="chart"></div>
<script>
$("#chart").kendoChart({
  series: [ {
    labels: {
      visible: true,
      background: "green",
      border: {
        width: 2,
        color: "black"
      }
    },
    data: [1, 2]
  }]
});
</script>
In this article