Hello everyone,
I’m still trying to get a decent working environment and since I have several types of output needed for my graphs, the obvious python tool would be a context manager. But I didn’t find any kind of implementation of that in the library documentation.
It would be basically something like this :
with plotly.set_template('custom_or_predefined'):
fig = go.Scatter(etc..)
pio.show(fig)
# or:
fig = go.Scatter(etc..)
with plotly.set_template('custom_or_predefined'):
pio.show(fig)
I know I can fiddle each setting each time to get what I need but I really want to work fast when plotting. Any information or advices that can help me is very welcomed !
Best regards