Nicer axes names in selector for figure options.#5667
Merged
tacaswell merged 1 commit intomatplotlib:masterfrom Dec 15, 2015
Merged
Nicer axes names in selector for figure options.#5667tacaswell merged 1 commit intomatplotlib:masterfrom
tacaswell merged 1 commit intomatplotlib:masterfrom
Conversation
Member
There was a problem hiding this comment.
Maybe be a bit more forgiving on this and allow only one of them?
710cb7f to
d981e2b
Compare
Replace the old label, which included the legthy repr of the axes object, to a nicer label which emphasizes the title or axes labels (depending on what is present). Also drops the use of the label of the Axes object itself, for which I haven't found any other reference or use in general. (Another option would be to use solely `Axes.get_label()` when defined, as this doesn't seem to have any other use.) See matplotlib#5468.
tacaswell
added a commit
that referenced
this pull request
Dec 15, 2015
Nicer axes names in selector for figure options.
Member
|
👍 keep up the good work! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Replace the old label, which included the legthy repr of the axes
object, to a nicer label which emphasizes the title or axes labels
(depending on what is present). Also drops the use of the label of the
Axes object itself, for which I haven't found any other reference or use
in general. (Another option would be to use solely
Axes.get_label()when defined, as this doesn't seem to have any other use.)
See #5468.