We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This plots black bars, as expected: Series(randn(10)).plot(kind='bar',color='black')
While this plots bars in default blue color, ignoring color keyword: DataFrame(randn(10,3)).plot(kind='bar',subplots=True,color='black')
The text was updated successfully, but these errors were encountered:
BUG: correctly handle color keyword for Series/DataFrame bar plots, #958
1ac953b
This appears to be working now. Plotting code is a bit of a construction zone so definitely report any bugs as you notice them
Sorry, something went wrong.
No branches or pull requests
This plots black bars, as expected:
Series(randn(10)).plot(kind='bar',color='black')
While this plots bars in default blue color, ignoring color keyword:
DataFrame(randn(10,3)).plot(kind='bar',subplots=True,color='black')
The text was updated successfully, but these errors were encountered: