()
| 60 | } |
| 61 | |
| 62 | componentDidMount() { |
| 63 | let ctx = document.getElementById(this.props.id); |
| 64 | this.state.chart = new Chart(ctx, { |
| 65 | type: (this.props.type+"").trim(), |
| 66 | data: this.state.data, |
| 67 | options: {} |
| 68 | }); |
| 69 | } |
| 70 | |
| 71 | updateChart() |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected