How to change Axis TickLabel Position of OWC Chart?

Excel Spreadsheet macros contain:

ActiveChart.Axes(xlValue).Select
With Selection
.MajorTickMark = xlOutside
.MinorTickMark = xlNone
.TickLabelPosition = xlHigh ' .TickLabelPosition = xlNextToAxis
End With

How can I realize such property in VisualBasic code



Answer this question

How to change Axis TickLabel Position of OWC Chart?

  • RajaGanapathy

    “It is helpful to remember that this forum is mainly for issues that directly pertain to the Visual Studio Tools for Office tools per se. So you will be best served by posing this question to a forum or newsgroup wholly dedicated to application-specific issues such as yours. Here is a link to resources that will help you: http://msdn.microsoft.com/office


  • How to change Axis TickLabel Position of OWC Chart?