Chart properties

G

Guest

I'm setting a whole list of properties for my chart, however the font.size
does not get set if Application.ScreenUpdating = false. Here is an example of
the code:

With ActiveChart.Axes(xlValue)
.AxisTitle.Font.FontStyle = "normal"
.AxisTitle.Font.Size = 11 'does not get set
.TickLabels.Font.Size = 11 'does not get set
.MajorGridlines.Delete
.MinimumScale = -25
.MaximumScale = 125
.Crosses = xlAutomatic
End With

Why is this? I really prefer to keep the Application.ScreenUpdating = false.

Thanks
The Doctor
 
R

Rob Bovey

This works fine for me in Excel 2000 with screen updating set to True.
What version of Excel are you using?

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *
 
G

Guest

Hmm, also Excel 2000. I guess I will have to accept this bug-like thing.

Thanks anyway Rob

The Doctor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top