[]
Gets or sets the position of tick-mark labels on the specified axis.
Use this property to determine whether axis labels are displayed on the low side, high side, next to the axis, or hidden.
TickLabelPosition TickLabelPosition { get; set; }
Property TickLabelPosition As TickLabelPosition
worksheet.Range["A1:B3"].Value = new object[,] {
{"Month", "Sales"},
{"Jan", 100},
{"Feb", 120}
};
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, worksheet.Range["A1:B3"]).Chart;
IAxis axis = chart.Axes.Item(AxisType.Value, AxisGroup.Primary);
axis.TickLabelPosition = TickLabelPosition.High;
TickLabelPosition position = axis.TickLabelPosition;