Hi, I’ve seen a few of these posts on here but nothing that’s been able to help me. I’m able to open up a plotly chart I make in Chrome, but it just comes up blank in IE. I’m working in Python
Example below. I’m using Plotly version 4.0.0
import plotly.graph_objects as go
import plotly
import numpy as np
N = 100
random_x = np.linspace(0, 1, N)
random_y0 = np.random.randn(N) + 5
random_y1 = np.random.randn(N)
random_y2 = np.random.randn(N) - 5
fig = go.Figure()
fig.add_trace(go.Scatter(x=random_x, y=random_y0,
mode=‘lines’,
name=‘lines’))
fig.add_trace(go.Scatter(x=random_x, y=random_y1,
mode=‘lines+markers’,
name=‘lines+markers’))
fig.add_trace(go.Scatter(x=random_x, y=random_y2,
mode=‘markers’, name=‘markers’))
plotly.offline.plot(fig, filename=‘file.html’)