Spaces:
Running
Running
| fetch('data/plot_data.json') | |
| .then(response => response.json()) | |
| .then(plotData => { | |
| Plotly.newPlot('plot', | |
| plotData.data, | |
| plotData.layout, | |
| {displayModeBar: false} | |
| ); | |
| }); | |