I want to change the default value for a particular config option. Iβm using the python library, but the defaults are defined in plotly.js. Is there a way to edit them at runtime? Or some way to override them in python?
In case itβs relevant, I want to change the default value for toImageButtonOptions.scale. In my view, the default value (1) leads to low quality images.
to clarify: my goal is to configure a global setting somewhere. iβm aware i can do fig.show(config=config), but i want to avoid having to do that every. time. i. call. fig.show. which is many times!
is there way to configure something globally? so that fig.show() has a different config option automagically?