messages.chartObject
Specifies the text of the chart tab content.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
messages: {
chart: {
bar: {
expandText: "Bar Charts"
},
column: {
expandText: "Column Charts"
},
line: {
expandText: "Line Charts"
}
}
}
});
</script>