Tickmarks Property

The Tickmarks property returns an AutoAxisTickMarks object to allow access to axis tick marks. This is a read-only property.

Syntax

object.Tickmarks

Example 1

This example shows how to access tick marks.

Dim TickMarks As Object

Set TickMarks = Axis.Tickmarks

Example 2

This example shows how to set the first major tick mark value to 5.

Dim TickMarks As Object

TickMarks.FirstTickValue = 5

 

Used by: AutoAxis object