Chart axis properties from VBA

R

Rita

I want to hide the data labels on my x-axis:

With fm![plot].Axes(xlCategory)
.MinimumScale = 1
.MaximumScale = 200
.HasTitle = False
.TickLabels.????

What is the equivalent to "None" in the Tick mark labels
on the format axis dialog?
 
Top