(props)
| 189 | export default class Spectrum extends React.Component{ |
| 190 | |
| 191 | constructor(props){ |
| 192 | super(props) |
| 193 | // This chart reference is needed to update the charts |
| 194 | this.divRef = React.createRef(); |
| 195 | this.chartRef = React.createRef(); |
| 196 | this.labelRef = React.createRef(); |
| 197 | }; |
| 198 | |
| 199 | updateChart(){ |
| 200 | if(this.chartRef !== null ){ |
nothing calls this directly
no outgoing calls
no test coverage detected