Make the X and Y axis scales equal on an Excel chart

前端 未结 3 589
甜味超标
甜味超标 2021-01-23 06:42

I\'d like the X and Y axes of my Excel charts to have the same scale on the screen, because I\'m plotting geographical data. A 1km by 1km square should look like a square, not l

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-23 07:34

    Another method similar to Stewbob's is to set the limits to some ratio of each other (my plots are 4 times as wide as they are tall) and then use the height to set the width.

    ActiveChart.PlotArea.Select
    Selection.Width = Selection.Height * 4
    

提交回复
热议问题