I'm having trouble manipulating MSChart X Axis Labels. First, I would like to have the labels immediately below the tick mark, and thus the graph would draw from that gridline. Secondly, I would like my X axis labels to read down vertically. I have tried:
For i = 1 To MSChartLine.Plot.Axis(1).Labels.count
MSChart1.plot.Axis(VtChAxisIdX, 1).Labels.Item(i).TextLayout.Orientation = VtOrientationDown
Next i

But to no avail, the labels.count reflects only one (1) label, yet I have about 41, and they show up!

Any help on either problem will be greatly appreciated!