refresh
Reloads the data and renders the chart.
Example - refresh the chart
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [
{ type: "line", data: [1, 2] }
]
});
var chart = $("#chart").data("kendoChart");
chart.options.series[0].type = "bar";
chart.refresh();
</script>