messages.data.configuration.xAxis String
Specifies the text of the xAxis legend of the configuration panel. xAxis is present only with scatter type of chart.
Example - set the "xAxis" ChartWizard message
<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: {
xAxis: "Custom"
}
}
},
defaultState: {
seriesType: 'scatter'
}
});
</script>