-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Markers in plot and scatter ignore antialiased=False setting #10825
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
Not a backend expert, but it looks like |
Closing due to #10833 |
Did you check that it's fixed? That PR is not necessarily supposed to fix it. |
Sorry! 🐑 |
This issue has been marked "inactive" because it has been 365 days since the last comment. If this issue is still present in recent Matplotlib releases, or the feature request is still wanted, please leave a comment and this label will be removed. If there are no updates in another 30 days, this issue will be automatically closed, but you are free to re-open or create a new issue if needed. We value issue reports, and this procedure is meant to help us resurface and prioritize issues that have not been addressed yet, not make them disappear. Thanks for your help! |
Bug report
Bug summary
Markers in line
plot
s andscatter
plots cannot be created without antialiasing. The argumentantialiased=False
is ignored. The scatter dots are still antialiased when callingThe line of a line
plot
as well as aCircle
are however obeying to turning the antialiasing off.Code for reproduction
I will provide a not-so-minimal example here, but which allows to directly observe the difference between
antialiased=True
andantialiased=False
within matplotlib and can potentially directly be used as a test for the issue.The following produces a two-part image, each with a line, a circle (red, nose) and a scatter and a line plot with marker (orange, eyes). In the left part all artists are being given the
antialiased=True
, in the right partantialiased=False
.Actual outcome
Expected outcome
In the right image, we would expect the orange dots to consist only of black and orange pixels, similar to the red circle (the nose).
Matplotlib version
The text was updated successfully, but these errors were encountered: