seriesDefaults.labels.visible Boolean (default: false)

If set to true the chart will display the series labels. By default chart series labels are not displayed.

Example - show the chart series labels

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