state.series.labelsObject

The chart series label configuration.

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

Example

<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
    state: {
        series: [{
            labels: {
                visible: true,
                format: "{0:C}",
                color: "blue"
            }
        }]
    }
});
</script>