We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SETTINGS.layout
It seems that sometimes the process of merging together a plot layout and the global layout is mutating the global layout.
To reproduce:
PlotlyLight.reset!() Preset.PlotContainer.settings!( layout=Config(xaxis=Config(automargin=true))) expected_layout = Config(xaxis=Config(automargin=true)) PlotlyLight.SETTINGS.layout == expected_layout # true Plot(x=rand(10),y=rand(10),layout=Config( xaxis=Config( title=Config( text="myX")))) PlotlyLight.SETTINGS.layout == expected_layout # no longer true
At the end, the SETTINGS.layout has acquired the xaxis.title.text field
xaxis.title.text
The text was updated successfully, but these errors were encountered:
merge
Thanks for the report! It's a silly bug in EasyConfig that will be fixed ASAP.
Sorry, something went wrong.
No branches or pull requests
It seems that sometimes the process of merging together a plot layout and the global layout is mutating the global layout.
To reproduce:
At the end, the
SETTINGS.layout
has acquired thexaxis.title.text
fieldThe text was updated successfully, but these errors were encountered: