-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Add update functionality to make_subplots #221
New issue
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
Comments
I recall that we thought about adding an which would allow easier:
|
The |
I still think that we're making a micro-language of the @etpinard the second method you suggest covers the user's needs, so I'd vote for that, even if it's a little more verbose. Could we do something like this (and maybe this is what you were getting at with the first approach)? tls.make_subplots(rows=2, cols=2, axes_updates=[
{'target_axis': 'x', 'row': 1, 'col': 2, 'update': {'title': 'blah'},
{'target_axis': 'all', 'row': 1, 'col': 2, 'update': {'type': 'log'}
]) That feels more readable to me. But maybe it's (1) not possible given how the code works or (2) working outside the (2) cents : D |
Hi - this issue has been sitting for a while, so as part of our effort to tidy up our public repositories I'm going to close it. If it's still a concern, we'd be grateful if you could open a new issue (with a short reproducible example if appropriate) so that we can add it to our stack. Cheers - @gvwilson |
@theengineear @chriddyp
So that axes can be generated with custom attributes.
Perhaps like
and/or
more info here.
The text was updated successfully, but these errors were encountered: