Excel 2003 - VBA - Charting

C

Craig Brandt

Is there a way to get the "Y" labels to show up on the right end of the
chart, rather then the left?

Craig
 
A

Andy Pope

Hi,

The Crosses property set to xlMaximim should do it,

'---------
With ActiveChart.Axes(xlCategory)
.Crosses = xlMaximum
.TickLabelSpacing = 1
.TickMarkSpacing = 1
.AxisBetweenCategories = True
.ReversePlotOrder = False
End With
'---------

Cheers
Andy
 
A

Andy Pope

Hi,

To explain, the code is the equivalent of manually, in xl2003 or older,
double clicking X axis and on the Scale tab checking the option,
Value (Y) axis crosses at maximum category.

Cheers
Andy
 

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

Top