I have a weird problem. Jupyterlab doesn't show plotly graphs, but in Jupyter notebook, everything works fine. I've searched everywhere, many said plotly-extension should be installed. I have installed plotly extension. The notebook I'm working on is trusted. I don't know what should I do.
import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Scatter(y=[2, 1, 4, 3]))
fig.add_trace(go.Bar(y=[1, 4, 3, 2]))
fig.update_layout(title = 'Hello Figure')
fig.show()