Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / January 2005

Tip: Looking for answers? Try searching our database.

Auto Scaling in charts

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
JethroUK? - 03 Jan 2005 17:49 GMT
is there a method of clearing font scaling in charts by default (as opposed
to chart-by-chart basis)
John Mansfield - 03 Jan 2005 19:09 GMT
Jethro,

Can you let us know exactly what you mean by font scaling?

If you're trying to shut off the primary Y-axis scaling, you could use a
macro like this:

Sub ShutOffScaling()
   Dim Sht As Worksheet
   Dim Cht As ChartObject
   For Each Sht In ActiveWorkbook.Sheets
       For Each Cht In Sht.ChartObjects
           With Cht.Chart.Axes(xlValue)
               .MinimumScaleIsAuto = False
               .MaximumScaleIsAuto = False
               .MinorUnitIsAuto = False
               .MajorUnitIsAuto = False
           End With
       Next Cht
   Next Sht
End Sub

----
Regards,
John Mansfield
http://www.pdbook.com

"JethroUK©" wrote:

> is there a method of clearing font scaling in charts by default (as opposed
> to chart-by-chart basis)
Debra Dalgleish - 03 Jan 2005 19:19 GMT
For new charts, you can change a registry setting to make "Off" the
default. There are instructions in the following MSKB article:

   http://support.microsoft.com/default.aspx?id=168650

Warning -- Back up your registry before you make any changes to it!!

If you have Excel 2000, add a new DWORD (AutoChartFontScaling) with
Value Data:0 to

    HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Excel\Options

For Excel 2002, add a new DWORD (AutoChartFontScaling) with Value Data:0 to

    HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Excel\Options

JethroUK© wrote:
> is there a method of clearing font scaling in charts by default (as opposed
> to chart-by-chart basis)

Signature

Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html

JethroUK? - 04 Jan 2005 03:20 GMT
i dont have access to the registry (secured network) - thanx anyway for
useful tip

> For new charts, you can change a registry setting to make "Off" the
> default. There are instructions in the following MSKB article:
[quoted text clipped - 19 lines]
> Excel FAQ, Tips & Book List
> http://www.contextures.com/tiptech.html
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.