messages.format.categoryAxis.labelsObject

Specifies the text for the labels area of the categoryAxis panel

Example

<div id="chartwizard"></div>
<script>
$("#chartwizard").kendoChartWizard({
    messages: {
        format: {
            categoryAxis: {
                labels: {
                    text: "Labels Text",
                    color: "Labels Color",
                    font: "Labels Font",
                    rotation: "Labels Rotation"
                }
            }
        }
    }
});
</script>