Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Added default kwargs values to figure.suptitle() in rcParams and inheritance for function#27436
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
1cd461d
f42a1a8
e562145
5c43bc6
017f0c2
3f04ebb
1ae3050
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -331,8 +331,9 @@ def _suplabels(self, t, info, **kwargs): | ||
@_docstring.copy(_suplabels) | ||
def suptitle(self, t, **kwargs): | ||
# docstring from _suplabels... | ||
info = {'name': '_suptitle', 'x0': 'figure.title_x', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I do not understand how My guess is that this is related to the failures in the doc build | ||
'y0': 'figure.title_y', 'ha': 'figure.title_ha', | ||
'va': 'figure.title_va', 'rotation': 0, | ||
'size': 'figure.titlesize', 'weight': 'figure.titleweight'} | ||
return self._suplabels(t, info, **kwargs) | ||