messages.data.configuration.valueAxis String

Specifies the text of the valueAxis legend of the configuration panel. Value Axis is present only with non-categorical type of chart.

Example - set the "valueAxis" ChartWizard message

Open In Dojo
<div id="chartwizard"></div>
<script>
    $("#chartwizard").kendoChartWizard({
        dataSource: [
        [
            { field: 'Product Name', value: 'Calzone' },
            { field: 'Quantity', value: 1 },
            { field: 'Price', value: 12.39 },
            { field: 'Tax', value: 2.48 },
            { field: 'Total', value: 14.87 }
            ],
        ],
        messages: {
            data: {
                configuration: {
                    valueAxis: "Custom"
                }
            }   
        },
        defaultState: {
            seriesType: 'pie'
        }
    });
</script>
In this article