开发者

how to pass array values to dojo pie chart using javascript

开发者 https://www.devze.com 2022-12-21 19:43 出处:网络
Please can any one help me out how to pass array values to the dojo pie 开发者_如何学编程chart using javascript..

Please can any one help me out how to pass array values to the dojo pie 开发者_如何学编程chart using javascript..

I need to update the pie chart on fly. on selection on user from gridivew..


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();
0

精彩评论

暂无评论...
验证码 换一张
取 消