Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Is it possible to link the scales for the X and Y axis so that the scale can
increase/decrease automatically, but both X and Y always cover the same range. I am plotting data which is just easier to read if 0,0 remains in the centre of the graph - I could fix the axis scale, but I want to leave as 'auto' due to the changing data. Thanks, Andy |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
On Wed, 7 Feb 2007, in microsoft.public.excel.charting,
Andy said: Is it possible to link the scales for the X and Y axis so that the scale can increase/decrease automatically, but both X and Y always cover the same range. I am plotting data which is just easier to read if 0,0 remains in the centre of the graph - I could fix the axis scale, but I want to leave as 'auto' due to the changing data. I would suggest creating an invisible data range consisting of four scatter points whose x values are plus and minus the MAX() values of the real x values, and whose y values are +/- the MAX() of the displayed y values. x y MAX(x-range) MAX(y-range) -MAX(x-range) MAX(y-range) MAX(x-range) -MAX(y-range) -MAX(x-range) -MAX(y-range) This invisible rectangle should, if I'm right, keep your automatic ranges centred on the screen. -- Del Cotter NB Personal replies to this post will send email to , which goes to a spam folder-- please send your email to del3 instead. |
#3
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Del has the right idea but you need to use a more complex approach. Instead
of just MAX(x-range) use MAX(MAX(x-range),ABS(MIN(x-range))) This will cater to the possibility that the -ve values have a larger absolute magnitude than the positive values. This *should* give you (0,0) in the center but one cannot be sure since XL's algorithm for calculating the axis scaling is not documented (at least the last time I checked it was documented for XL5 and not for any later version). -- Tushar Mehta http://www.tushar-mehta.com Custom business solutions leveraging a multi-disciplinary approach In Excel 2007 double-click to format may not work; right click and select from the menu "Andy" wrote: Is it possible to link the scales for the X and Y axis so that the scale can increase/decrease automatically, but both X and Y always cover the same range. I am plotting data which is just easier to read if 0,0 remains in the centre of the graph - I could fix the axis scale, but I want to leave as 'auto' due to the changing data. Thanks, Andy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Changing Y Axis Scale with percentages (Line Graph) | Charts and Charting in Excel | |||
How do I split the axis scale on a line graph | Excel Discussion (Misc queries) | |||
Scale on X & Y Axis of the scatter chart | Charts and Charting in Excel | |||
X axis scale on an XY scatter plot | Charts and Charting in Excel | |||
Dynamic Range with unused formula messing up x axis on dynamic graph | Charts and Charting in Excel |