File size: 237 Bytes
aa31781
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11

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