Rahim Baig

Results 2 comments of Rahim Baig

I'm sure Plotly will address this formatting issue soon. Meanwhile, you can use this alternative method: import plotly.graph_objects as go figure = go.Figure() figure.add_scatter( x=[1], y=[0.58], ) figure.update_layout( yaxis=dict( range=[-0.66,...

If using a PyInstaller spec file (test_build.spec): Edit your spec file and add: hiddenimports=[ "plotly.graph_objs", "plotly.validators", "plotly.graph_objs.scatter", "plotly.graph_objs.layout", "plotly.graph_objs.bar", "plotly.graph_objs.figure", "plotly.graph_objs.scattergl", "plotly.graph_objs.histogram", "plotly.graph_objs.pie", "plotly.graph_objs.box", "plotly.graph_objs.heatmap" ], Then build with: pyinstaller...