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

问题描述 投票:0回答:1

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

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

dojo
1个回答
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();
© www.soinside.com 2019 - 2024. All rights reserved.