-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
way to preserve square aspect ratio #70
Comments
@chriddyp, thoughts? This is a common one, especially for heatmaps/contour plots. Here are a couple of ways we might implement this:
I'd probably lean towards better documenting (2), but would consider (3). In addition, it would probably be a good idea to write in some logic that sets @arsenovic, it seems like you were maybe thinking of (1), do either (2) or (3) work for you? |
What about making (which would require modifications on our backend) |
it may be too greedy, but ideally you can have the graph auto-sizeable, but retain squareness. so whenever one width or height changes the other does too. of the above options (3) is nice. (2) is a no so good, because the concepts of aspect ratio and size should be independent. |
I see, yeah. It would be annoying for a user to have to decide before hand how big they want the final image... @alexcjohnson, is there currently a way to let Plotly pick the size, but retain the aspect ratio? I could imagine it would be useful for users to set something like: {
"layout":
{
"height": 1,
"width": 2,
"dimension": "ratio",
"autosize": false
}
} Where |
Interesting, we can't do this now but it could definitely be a useful feature. Also seeing @arsenovic on here (howdy!) reminds me we'll need something similar for axes, if you want to enforce a particular aspect ratio as you zoom around - like for smith charts and maps. The other thing I've been pondering re: autosize is some sort of responsive mode, where the fonts, margins, line widths, marker sizes... get adjusted as the size changes. Maybe linearly, (in the minimum dimension?) maybe something more sophisticated. Would be useful for publishers who want a responsive layout (they'll have to resize their iframe in javascript but then we can redraw the plot appropriately). Thoughts? |
Hi...I would like to help implementing solution # 3 in 2nd post, this one: So would it be possible if some one more familiar with the code let us know a good point to start to implement this option in the plot function? It would be great if you point us in the right direction. |
@dab3-2014 - I think we're going to stay away from #3 but instead for people to set |
@chriddyp - An example of where axis equal would be a huge benefit is in what I am using plotly for right now: Since the width and length axis are equivalent to one another, if I zoom in on the right hand plot the aspect ratio should be preserved. As a result both plots should zoom in together and mirror one another. That is not the case currently. This can be repeated by drawing a rectangle zoom on the contour plot within the second subplot on the right. Observe that aspect ratio is lost, and that the first subplot on the left mirrors the action in a nonsense manner. Any deviation from the width and length parameters not being equal provides a misleading representation in this geometric case. |
Is there any update on this? The milestone is definitely not up to date. We've encountered this issue trying to plot honeycomb lattice over here. Funnily 3D plotting has equal aspect ratios automatically (for no obvious reason). |
echoing @akhmerov 's comment - is there any update on this? |
Just for those who find this deserted place via google, I found that manually setting the plot aspect ratio through height and width is an acceptable (although fragile) workaround. |
A square plot area is seems difficult to achieve (perhaps I'm missing something) with a colorbar visible. |
Is there any news on this issue? |
+1, this screws up any attempt at visualizing things like surface normals in 3D point clouds |
@akhmerov can you elaborate on your solution? |
@tachim I don't remember anymore, it's been a while. Everything we've done is in https://github.com/adriaanvuik/solid_state_physics |
Part of this issue is solved in the latest version of plotly.js via this "Axis Constraints" PR - plotly/plotly.js#1522 - which enables optional fixed aspect ratio on zoom. The other feature brought up in this issue (coordinated zoom on subplots sharing an axis) would also need to be solved in plotly.js. Issue here: plotly/plotly.js#1549 Any companies interested in sponsoring this? |
Can someone please give a simple example of a scatter plot with fixed ratio on zoom? |
Example of fixed ratio here https://plot.ly/python/axes/#fixed-ratio-axes and reference info here https://plot.ly/python/reference/#layout-xaxis-scaleanchor |
The |
...although |
@Juanlu001 thanks for the layout trick. Any idea how to change the scale of the Z axis (without multiplying)? Basically X/Y axis are on same pixel scale and Z is on another scale. |
@dragoljub you're welcome! does plotly/documentation#1182 answer your question? |
I ended up using this to get it working to my needs:
This gives me X & Y axis on the same pixel scale and then I can tune the Z scale by a multiple while keeping the ticks on the X,Y,Z axis in the correct data scale. |
would be nice to have something equivalent to mpl's
axis('equal')
command to force a square aspect ratio.The text was updated successfully, but these errors were encountered: