如何使用javascript将数组值传递给dojo饼图

时间:2010-03-01 20:16:05

标签: dojo

请任何人帮我解决如何使用javascript将数组值传递到dojo饼图。

我需要在飞行中更新饼图。从gridivew选择用户..

1 个答案:

答案 0 :(得分:2)

我可以帮助饼图:

my_chart.
  // let's update data
  updateSeries("your series name here", your_data_here).
  // finished updating, now let's show the changes
  render();

添加具有相同名称的系列也可以使用:

my_chart.
  // let's update data
  addSeries("your series name here", your_data_here).
  // finished updating, now let's show the changes
  render();