dojo.byId 之后 dojox 图表更新/销毁不起作用
我使用创建了一个道场图表;
var pieChart = new dojox.charting.Chart2D("pieChart");
之后我想更新/销毁这个图表。所以我愿意;
var pieChart = dojo.byId("pieChart");
pieChart.destroy();
这似乎不起作用。我在这里做错了什么吗?
最好的
I created a dojo chart using;
var pieChart = new dojox.charting.Chart2D("pieChart");
Afterwards I want to update/destroy this chart. SO I do;
var pieChart = dojo.byId("pieChart");
pieChart.destroy();
This seems to be not functional. Am I doing something wrong here?
best
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了同样的问题,我在一个地方创建了图表,然后想在另一个地方销毁它,但我没有对图表对象的引用。我找到的唯一解决方案是清空用于制作图表的 DOM 节点:
I ran into this same problem, where I created the chart in one place and then wanted to destroy it in another, but I didn't have a reference to the chart object. The only solution I found is to empty the DOM node you used to make the chart:
由于您使用的是 dojox,因此 dojo.byId 不会返回 javascript 对象,请尝试使用 dijit.byId 我认为它会按照以下建议工作:
var pieChart = dijit.byId("pieChart");
饼图.destroy();
我在经过巨大努力后发现了 dojox.form.BusyButton 遇到的同样问题......
As you're using dojox so dojo.byId will not return javascript object try using dijit.byId I think it'll work as suggested below:
var pieChart = dijit.byId("pieChart");
pieChart.destroy();
the same problem I was facing with dojox.form.BusyButton after a great effort I found this...
第二个变量将引用 DOM 对象,而不是存储图表对象的 javascript 对象。
我希望它有帮助。
The second variable will reference DOM object, not the javascript object that store chart object.
I hope it helps.