Skip to content

[WIP] Property Cycling #4686

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 31 commits into from
Aug 29, 2015
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d08c627
Add Cycler as a dependency
WeatherGod Jul 11, 2015
e3c0951
Implemented style cycling using cycler.
WeatherGod Jul 12, 2015
160401b
Fix a typo for cycler dependency
WeatherGod Jul 14, 2015
6b2223d
Initial implementation of property cycling
WeatherGod Jul 14, 2015
0c1e609
Fix some typos and handle some other codes using color cycling
WeatherGod Jul 14, 2015
61d10f9
Make dict access safer
WeatherGod Jul 15, 2015
e356972
Added some tests for baseline features
WeatherGod Jul 15, 2015
68f0afb
Updated the fill test to get the hatching.
WeatherGod Jul 16, 2015
c806726
fix typo
WeatherGod Jul 28, 2015
9965f5f
should have linted
WeatherGod Jul 28, 2015
5fa07f2
Getting cycling to work!
WeatherGod Aug 14, 2015
98fb775
Add deprecation notice for axes.color_cycle
WeatherGod Aug 15, 2015
f443629
Some axes.prop_cycler param improvements.
WeatherGod Aug 15, 2015
648d3ea
Made the linewidth thicker for a test
WeatherGod Aug 15, 2015
2e7b6a5
Updated styles and templates for prop_cycle
WeatherGod Aug 15, 2015
a1b822f
Some documentation and updating an old example
WeatherGod Aug 16, 2015
6df7829
PEP8 fixes
WeatherGod Aug 16, 2015
871d616
Simplify set/getdefaults logic for property cycler
WeatherGod Aug 17, 2015
e7786d0
Added basic validation/normalization for cycler
WeatherGod Aug 17, 2015
153ef67
* aliases support
WeatherGod Aug 17, 2015
8ce4797
Support and test for marker cycling
WeatherGod Aug 17, 2015
f3e8394
* Fix cycler advance bug (and added test)
WeatherGod Aug 17, 2015
6b5a6a5
Added the deprecation notice to api_changes/
WeatherGod Aug 17, 2015
c72a74f
PEP8 fixes
WeatherGod Aug 17, 2015
53f1ff2
Fix test now that we normalize property names
WeatherGod Aug 17, 2015
9a31950
some simplification and doc-fixes
WeatherGod Aug 19, 2015
55bf053
Fix a typo
WeatherGod Aug 20, 2015
44f74e3
Finalized the validating cycler design.
WeatherGod Aug 22, 2015
5a3ce17
reduce() isn't built-in in py3k. go figure...
WeatherGod Aug 23, 2015
9848661
Improve set_prop_cycle(). Docstring fixes.
WeatherGod Aug 24, 2015
63d6321
Realized that I didn't have a hatch validator
WeatherGod Aug 24, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
should have linted
  • Loading branch information
WeatherGod committed Aug 15, 2015
commit 9965f5fb198d22d1631df11cdf85be966b971c6e
2 changes: 1 addition & 1 deletion lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ def matplotlib_fname():
lambda x: "path" if x else "none", None),
'savefig.extension': ('savefig.format', lambda x: x, None),
'axes.color_cycle': ('axes.prop_cycle', lambda x: cycler('color', x),
lambda x: [c.get('color', None) for c in x],
lambda x: [c.get('color', None) for c in x]),
}

_deprecated_ignore_map = {
Expand Down