seriesDefaults.labelsObject
The chart series label configuration.
The chart displays the series labels when the seriesDefaults.labels.visible option is set to
true
.
Example - configure the chart series label
<div id="chart"></div>
<script>
$("#chart").kendoChart({
seriesDefaults: {
labels: {
visible: true,
background: "green",
border: {
width: 2,
color: "black"
}
}
},
series: [
{ data: [1, 2] }
]
});
</script>
In this article