(props)
| 3 | |
| 4 | |
| 5 | const DataPlot = (props) => { |
| 6 | let config = getPlotConfig(props.rows, props.cols) |
| 7 | |
| 8 | return ( |
| 9 | <Plot |
| 10 | data={config.data} |
| 11 | layout={{ ...config.layout, paper_bgcolor: 'transparent', plot_bgcolor: 'transparent' }} |
| 12 | style={{ width: '100%', height: '100%' }} |
| 13 | config={{ responsive: true, displayModeBar: false }} |
| 14 | /> |
| 15 | ); |
| 16 | } |
| 17 | |
| 18 | export default DataPlot |
nothing calls this directly
no test coverage detected