Distortion in Axes of plots

Hi @Vale1, you can fix the scaling by the use of scaleanchor which is independent of the width and height of the figure.

here an MRE:

import numpy as np
import plotly.graph_objects as go

# Polar Coordinates
r = 1
theta = np.linspace(0, 2*np.pi, 200)

x_circle = 1 + r*np.cos(theta)
y_circle = 1 + r*np.sin(theta)

fig = go.Figure(
    data=go.Scatter(
        x=x_circle,
        y=y_circle,
        name='Circle',
        mode='lines',
        line=dict(
            width=1.0,
            color='rgba(66, 28, 82, 0.9)'
        )
    ),
    layout={'width': 500, 'height':400, 'xaxis': {'scaleanchor': 'y'}}
)
    
fig.show()

newplot (9)
mrep scaleanchor