TickLabelPosition Property [Excel 2003 VBA Language Reference]

XlTickLabelPosition

XlTickLabelPosition can be one of these XlTickLabelPosition constants.
xlTickLabelPositionLow
xlTickLabelPositionNone
xlTickLabelPositionHigh
xlTickLabelPositionNextToAxis

expression.TickLabelPosition

expression Required. An expression that returns one of the objects in the Applies To list.

Remarks

You cannot use the xlTickLabelPositionHigh constant on 3-D charts.

Example

This example sets tick-mark labels on the category axis in Chart1 to the high position (above the chart).

Charts("Chart1").Axes(xlCategory) _
    .TickLabelPosition = xlTickLabelPositionHigh

Applies to | Axis Object

See Also | MajorTickMark Property | MinorTickMark Property | TickLabels Property | TickLabelSpacing Property | TickMarkSpacing Property