-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Mozilla plot point size on scattergl plots is not equal as in Chrome and as in SVG plots #1287
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
Can you share a reproducible example? |
Check out the point size differences between chrome and mozilla running this two codepends in both browsers: scatter: https://codepen.io/anon/pen/pRjLwL FYI I was using those browsers on UBUNTU 16.04 Chrome: 55.0.2883.87 |
In chrome there is a very small difference on point size, but in mozilla there is a huge one with webGL... |
Between SVG implementations there is no difference between browsers. So Chrome in WebGL perfomes almost exactly as in SVG, but Mozilla changes a lot... Too much for the app I am doing... and I can't force the useres to use chrome.... |
Thanks for the report cc @dfcreative |
Any idea when this could be solved? |
Thanks for checking @rreusser ! |
@ifll yes, I can confirm the behavior in Ubuntu 16.04 |
It seems to be Ubuntu Specific, as I have checked in windows and it worked... |
We use monospace default system font for rendering symbols, it is likely that mozilla has whether different monospace font or uses different rendering approach. |
Currently I cannot dedicate some time on it, I need to face other stuff. Maybe during the week or on the next week I can find some time and try to provide them. Sorry for this and hope it is not an inconvinience.... |
1e300c4 adds sizes test |
done in #2258 |
I have been doing some trials on my own about scatter and scattergl 2D plots. This is what I found:
SVG plot:
Mozilla performs good and exactly the same as Chrome when inputing a list of sizes for the points being displayed. Length(Points) == Length(List of sizes)
Chrome performs good an exactly the same as Mozilla in SVG when inputing a list of sizes for the points being displayed. Length(Points) == Length(List of sizes)
WebGL plot:
Mozilla performs good but different as Chrome in WebGL and SVG and different as Mozilla in SVG as well.
Chrome performs good and same as Chrome in SVG and Mozilla in SVG but different as Mozilla in WebGL
To summarize, at some point the rendering of the scattergl plot in mozilla oversizes the points even if you input a specific point size. Chrome in SVG and WebGL perform the same
Would that be a bug? Would this be solved?
Thank you very much!!
The text was updated successfully, but these errors were encountered: