would be nice to have something equivalent to mpl's axis('equal') command to force a square aspect ratio.
@chriddyp, thoughts? This is a common one, especially for heatmaps/contour plots. Here are a couple of ways we might implement this:
Figure or Layout?)fig['layout'].update(width=500, height=500, autosize=False)py.plot(fig, equal_axes=True)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 auto*=False whenever the appropriate keys are properly filled in, e.g., both width _and_ height.
@arsenovic, it seems like you were maybe thinking of (1), do either (2) or (3) work for you?
What about making 'autosize' support True, False, and 'equal-axis' values?
(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 dimension could have "ratio", "pixels". We'd keep "autosize" to mean absolutely let Plotly chose the dimensions, i.e., you wouldn't get the requested aspect ratio unless "autosize": false.
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:
3.throw it in the plot call, py.plot(fig, equal_axes=True)
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 width and height in layout. My thought is that setting the size and the aspect ratio is setting the same number of things as setting the width and the height, so I don't see enough benefit at this point.
@chriddyp - An example of where axis equal would be a huge benefit is in what I am using plotly for right now:
https://plot.ly/~SimonBiggs/113/bivariate-quadratic-spline-fit-using-the-parameters-equivalent-width-and-equival/
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?
I would also greatly appreciate something like "equal_axes=True", "axes('equal')" or "set_aspectratio=1" in a 2D plot with plotly.
Has it been implemented? If yes, what exactly is the syntax?
+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 - https://github.com/plotly/plotly.js/pull/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: https://github.com/plotly/plotly.js/issues/1549
Any companies interested in sponsoring this?
https://plot.ly/products/consulting-and-oem/
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 fig['layout'].update(width=500, height=500, autosize=False) trick is not working as expected for me, so I will have to manually set the aspect ratio of each axis (x, y, z) or do some other thing. It would be great to have this in plotly!
...although fig['layout'].update(scene=dict(aspectmode="data")) did the trick!
@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 https://github.com/plotly/documentation/pull/1182 answer your question?
I ended up using this to get it working to my needs:
fig['layout'].update(scene=dict(
aspectmode='manual',
aspectratio=go.layout.scene.Aspectratio(
x=x.ptp(), y=x.ptp()/y.ptp(), z=z.pyp()/x.ptp()*100)
)))
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.
Most helpful comment
Is there any news on this issue?
I would also greatly appreciate something like "equal_axes=True", "axes('equal')" or "set_aspectratio=1" in a 2D plot with plotly.
Has it been implemented? If yes, what exactly is the syntax?