messagesObject
Allows localization of the strings that are used in the widget.
Example - configure the messages
<div id="chart"></div>
<script>
$("#chart").kendoChart({
messages: {
noData: "No data available"
},
series: [
{ name: "Series 1", data: [] }
]
});
</script>
In this article