-
-
Notifications
You must be signed in to change notification settings - Fork 404
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
title_format plot option now includes dimensions #436
Conversation
The |
@@ -916,7 +916,7 @@ def _compute_gridspec(self, layout): | |||
|
|||
# Create title handle | |||
if self.show_title and len(self.coords) > 1: | |||
title = self.handles['fig'].suptitle('', **self._fontsize('title')) | |||
title = self.handles['fig'].suptitle('', y=1.05, **self._fontsize('title')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a magic number? I assume this makes it look better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, generally avoids overlap between the plot title and the overall layout title. Not sure how best to provide control over it.
Looks good for merging, the display changes are the deletion of trailing whitespace in the titles when no label is supplied. |
Ok. Tests are passing. Merging. |
The title_format plot option now includes dimensions
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
As the title says this allows more customizing the plot title_format as suggested in #425.