series.labels.visible Boolean|Function (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({
  series: [ {
    labels: {
      visible: true
    },
    data: [1, 2, 3]
  }]
});
</script>
In this article