SetAutoMinorDTSpacingAfterBreak

The SetAutoMinorDTSpacingAfterBreak method sets the state of using the default minor tick spacing after the break pointed to by breakIndex in the break list.

Syntax

object.SetAutoMinorDTSpacingAfterBreak ( breakIndex, state)

 

Parameter Type Description
breakIndex Integer required, the position of the break in break list; the break list index starts at 1
state Boolean required, True uses the default minor tick division, and False does not use the default

 

Remarks

See Axis Properties - Break Axis Page for detailed information on breaking an axis. See AutoBreakAxis object for a full example script.

Example

This example shows how to set the state of the default minor date/time tick spacing after the first break.

XAxis1.AxisBreak.SetAutoMinorDTSpacingAfterBreak(1, True)

 

Used by: AutoBreakAxis object