()
| 33 | |
| 34 | // update |
| 35 | componentDidUpdate() { |
| 36 | if(!this.isLayer()) { |
| 37 | this.renderEchartDom() |
| 38 | } else { |
| 39 | const { cellKey, echartParent } = this.props |
| 40 | echartParent.series[cellKey] = this.getSeries() |
| 41 | echartParent.renderEchartDom() |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // remove |
| 46 | componentWillUnmount() { |
nothing calls this directly
no test coverage detected