This question is locked. New answers and comments are not allowed.
I been reading some donut chart info the support documentation. I do have a donut chart that need to be updated when new data comes in. These data is stored locally. Is there anyway to update those data and reflect on the donut chart?
I had made some example of the source code as below:
I have new data like "[50,0,40,6,4]". How to I update the donutSeries.data and reflect it to the donut chart?
I had made some example of the source code as below:
var donutSeriesChartCtrl = new Telerik.UI.RadChart(document.getElementById("donutSeriesChart"));var donutSeries = new Telerik.UI.Chart.DonutSeries();donutSeries.data = [16.7, 20, 15.7, 26.6, 23.5];donutSeriesChartCtrl.series.push(donutSeries);donutSeriesChartCtrl.refresh();I have new data like "[50,0,40,6,4]". How to I update the donutSeries.data and reflect it to the donut chart?