I implemented kendo chart of Telerik and below is my code after applying updated values.
I would like to smoothly update only bar - like below LINK:
http://www.jqueryscript.net/demo/Dynamic-Animated-jQuery-Bar-Charts-Plugin-LiveGraph/demo/
My existing code to refresh graph is:
var chart = $("#divBarChart").data("kendoChart");
chart.options.series[0].data = globalSeriesValue
chart.refresh();
Please guide.