(data)
| 81 | |
| 82 | // remove points but not bg |
| 83 | clearGraph(data){ |
| 84 | for(var i=0;i<this.fakedata.points.length;i++){ |
| 85 | this.bg.getChildAt(i).tint=0xFFFFFF; |
| 86 | } |
| 87 | for(var j =0; j<data.points.length;j++){ |
| 88 | this.bg.removeChildAt(100); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | clearGraphBg(){ |
| 93 | for(var i=0;i<this.fakedata.points.length;i++){ |
nothing calls this directly
no outgoing calls
no test coverage detected