messages.format.legend.positionObject
Specifies the text for the position DropDownList of the legend panel
Example
<div id="chartwizard"></div>
<script>
$("#chartwizard").kendoChartWizard({
messages: {
format: {
legend: {
position: {
default: "Position",
top: "Top",
bottom: "Bottom",
left: "Left",
right: "Right"
}
}
}
}
});
</script>