()
| 316 | |
| 317 | timer = null; |
| 318 | componentDidMount(){ |
| 319 | // This will refresh the chart as often as indiciated |
| 320 | // in the variable refreshRate |
| 321 | this.timer = setInterval(() => { |
| 322 | this.updateChart(); |
| 323 | }, refreshRate); |
| 324 | } |
| 325 | |
| 326 | componentWillUnmount(){ |
| 327 | clearInterval(this.timer); |
nothing calls this directly
no test coverage detected