-
Notifications
You must be signed in to change notification settings - Fork 18
Sync _legend_dict on legend location change
#310
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3202981
wrap matplotlib legend location setting to sync with legend_dict`
cvanelteren e5718ff
Merge branch 'main' into wrap-legend
cvanelteren 2c4be71
Merge branch 'main' into wrap-legend
cvanelteren 77be15e
update base to use plegend
cvanelteren 7bb883e
minor refactor
cvanelteren fea0041
Update ultraplot/legend.py
cvanelteren 3ffdb49
minor refactor
cvanelteren 878e84e
Update ultraplot/legend.py
cvanelteren f0c7db1
Update ultraplot/legend.py
cvanelteren 8004a8c
add unittest
cvanelteren b8c5aba
cleanup imports
cvanelteren File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| from matplotlib import legend as mlegend | ||
|
|
||
| try: | ||
| from typing import override | ||
| except ImportError: | ||
| from typing_extensions import override | ||
|
|
||
|
|
||
| class Legend(mlegend.Legend): | ||
| # Soft wrapper of matplotlib legend's class. | ||
| # Currently we only override the syncing of the location. | ||
| # The user may change the location and the legend_dict should | ||
| # be updated accordingly. This caused an issue where | ||
| # a legend format was not behaving according to the docs | ||
| def __init__(self, *args, **kwargs): | ||
| super().__init__(*args, **kwargs) | ||
|
|
||
| @override | ||
| def set_loc(self, loc=None): | ||
| # Sync location setting with the move | ||
| old_loc = None | ||
| if self.axes is not None: | ||
| # Get old location which is a tuple of location and | ||
| # legend type | ||
| for k, v in self.axes._legend_dict.items(): | ||
| if v is self: | ||
| old_loc = k | ||
| break | ||
| super().set_loc(loc) | ||
| if old_loc is not None: | ||
| value = self.axes._legend_dict.pop(old_loc, None) | ||
| where, type = old_loc | ||
| self.axes._legend_dict[(loc, type)] = value | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.