messagesObject
The configuration of the ChartWizard messages. Use this option to customize or localize the ChartWizard messages.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
messages: {
window: {
title: "Custom Chart Wizard"
},
chart: {
bar: {
expandText: "Custom Bar Chart"
}
},
data: {
configuration: {
expandText: "Custom"
}
}
}
});
</script>