(props)
| 3 | |
| 4 | export default class ChartModule extends React.Component { |
| 5 | constructor(props) { |
| 6 | super(props); |
| 7 | |
| 8 | this.state = {}; |
| 9 | |
| 10 | window.service.charts[this.props.id] = this; |
| 11 | |
| 12 | this.state.data = { |
| 13 | labels: [], |
| 14 | datasets: [] |
| 15 | }; |
| 16 | } |
| 17 | |
| 18 | drawLines() |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected