-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Allow both linestyle definition "accents" and dash-patterns as linestyle... #3265
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
62fe186
Allow both linestyle definition "accents" and dash-patterns as linest…
lennart0901 48063af
refactored linestyle handling for lines
lennart0901 14fa552
Check for double linestyle definition in plot_format
lennart0901 e5211f1
Added documentation changes for #2136
lennart0901 209fb1c
Make baseline image for testing single_dash pattern in collections.p…
lennart0901 ac6f3b8
Added missing baseline_images
lennart0901 7a6d179
Corrected wrong ordering of linestyles in axes._base._process_plot_fo…
lennart0901 8e6b78b
Coding style
lennart0901 1bb78d0
Changed docstrings to numpydoc format and rst style corrections
lennart0901 1dc8d89
TST : skeletal test for parsing plot format string
tacaswell d1ac222
TST : added test to make sure bad fmts fail
tacaswell c53dbe0
Removed converting color and setting linestyle in _process_plot_format
lennart0901 24e1301
Restored setting linestyle or marker to 'None' if only one is given i…
lennart0901 bea2634
Extended docstring of set_linestyle
lennart0901 23d5e56
Fixed triplot to deal with linestyle or marker being None
lennart0901 03b897f
Coding style
lennart0901 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
Next
Next commit
Allow both linestyle definition "accents" and dash-patterns as linest…
…yle for collection, lines and patches. (code & tests)
- Loading branch information
commit 62fe186abb76f9987cdaf0389cec7a502672ccd0
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
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
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.
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.
Why do we have both
ls_mapper
andls_mapperr
?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.
If you put the mapper into one, there is no way to decide which side of the mapping is "authoritative" (useable at the end in the backend). So I decided to divide them into a forward and reverse mapper here. So the mappers can be used without checking if the passed linestyle might be ok for the backend etc.
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.
can you use
ls_mapper_r
which matches our convention for color maps?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.
I was about to suggest that as well. Also, add a comment explaining the
reasoning you gave above.
On Tue, Jul 15, 2014 at 1:43 PM, Thomas A Caswell notifications@github.com
wrote: