noData.template String|Function
The template which is rendered when no series are defined, or all series are empty.
The message overlays the entire Chart with the exception of the Title and Subtitle.
Example - customize the noData template using a function
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
visible: false
},
series: [
{ name: "Series 1", data: [] },
{ name: "Series 2", data: [] }
],
noData: {
template: () => `Loading...`
}
});
</script>