Please can any one hlep me out how to pass arry values to the dojo pie chart using javascript..
I need to update the pie chart on fly.. on selection on user from gridivew.. Thanks
Please can any one hlep me out how to pass arry values to the dojo pie chart using javascript..
I need to update the pie chart on fly.. on selection on user from gridivew.. Thanks
I can help with Pie chart:
my_chart.
// let's update data
updateSeries("your series name here", your_data_here).
// finished updating, now let's show the changes
render();
Adding a series with the same name will work too:
my_chart.
// let's update data
addSeries("your series name here", your_data_here).
// finished updating, now let's show the changes
render();