value of chart scaling

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

how can I retrieve the value of the max and min scaling in
the active chart?

I'd like to set variables equal to each?

Thanks

}:-)
 
does this help?

bottom=yourvalue
top=yourvalue

ActiveChart.Axes(xlValue).Select
With ActiveChart.Axes(xlValue)
.MinimumScale = bottom
.MaximumScale = Top
.MinorUnitIsAuto = True
.MajorUnitIsAuto = True
' .MajorUnit = 500
.Crosses = xlAutomatic
.ReversePlotOrder = False
.ScaleType = xlLinear
.DisplayUnit = xlNone
End With
ActiveChart.Deselect
 

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

Back
Top