I have written code in Jupyter Notebook that creates a choropleth map. When I try to show the map with fig.show() everything is perfect, but I want to be able to send it to people so it can be opened on any computer without them having to run the actual code themselves.
I tried plotly.offline.plot(fig, filename=‘filename.html’) but the formatting changes (the whole map becomes a pale blue instead of white and it makes it harder to read.)
Is there a way to force the layout of figures to not change when doing offline plot? Or maybe is there a more efficient way to export this map that I do not know about?