문제

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

도움이 되었습니까?

해결책

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...

다른 팁

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:

dojo.empty("pieChart");

The second variable will reference DOM object, not the javascript object that store chart object.

var pieChart = new dojox.charting.Chart2D("pieChart");
pieChartDom = dojo.byId("pieChart"); //you cannot destroy, 
pieChart.destroy();  //you can destroy, this is original variable

I hope it helps.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top