messages.format.valueAxis.labels.labelFormat.percent String

    Specifies the text for the DropDownList item which represents the percent option

    Example - set the "percent" 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: {
                format: {
                    valueAxis: {
                        labels: {
                            labelFormat: {
                                percent: "Custom"
                            }
                        }
                    }
                }   
            }
        });
    </script>
    In this article