I have a Kendo ui chart which displays a column chart from a dynamic data sour
Try this
var chart=$("#chart").data("kendoChart"); //to check the chart exist or not if exist then redraw it.. if(chart) { chart.redraw(); }
Thanks