TickLabelPosition Property

Microsoft Excel Visual Basic

TickLabelPosition Property

       

Describes the position of tick-mark labels on the specified axis. Read/write 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.

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