messages.format.valueAxis.labels.rotationObject

Specifies the text for the rotation area for the labels of the valueAxis panel

Example

<div id="chartwizard"></div>
<script>
$("#chartwizard").kendoChartWizard({
    messages: {
        format: {
            valueAxis: {
                labels: {
                    rotation: {
                        text: "Rotation",
                        auto: "Auto"
                    }
                }
            }
        }
    }
});
</script>