TickLabelPosition Property

Describes the position of tick-mark labels on the specified axis. Read/write

.

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

expression.TickLabelPosition

Example

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

  myChart.Axes(xlCategory) _
    .TickLabelPosition = xlTickLabelPositionHigh

See Also