-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
New cycler does not work with bar plots #5854
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
Comments
For the most part, in v1.5.x, the cycler will only work where-ever color On Thu, Jan 14, 2016 at 11:10 AM, Christoph Buchner <
|
#5674 addresses this issue (and others). @WeatherGod: Why do you call out |
Right, I was talking about whatever has been released. On Thu, Jan 14, 2016 at 12:28 PM, Michael Droettboom <
|
OK, so bar plots basically can't digest cycles if I understand correctly. Thanks, I missed that.
really, how? It only talks about colors afaict, but not about property cycles (which can have properties other than color, e.g. hatch) for bar plots, if I haven't missed something? |
@WeatherGod should I close this, then, or leave it open until next-major-release? |
repeated calls to `ax.bar` will advance the patch color cycle. closes matplotlib#5854
repeated calls to `ax.bar` will advance the patch color cycle. closes matplotlib#5854
repeated calls to `ax.bar` will advance the patch color cycle. closes matplotlib#5854
awesome, thanks! |
I cannot get the new prop cycler to work with bar plots, it does not pick up the cycler properties at all.
I have minimally adapted the cycler demo to show this - see the
ax1.bar
calls. Running this gives two blue and one red bar plot, when it should give (in my expectation) one cyan, one magenta (from the cycle) and one red (manually set). The top axis' plot gets cycled correctly.This is on mpl 1.5.1. Is this pebkac, or does the cycler only work for some plots (if so, which ones)?
Also, are hatches supported by this, too (I mean, as soon as it works)? That's what I ultimately want to do.
The text was updated successfully, but these errors were encountered: