SetAutoMajorDTSpacingAfterBreak

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

Syntax

object.SetAutoMajorDTSpacingAfterBreak ( 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 major 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 major date/time tick spacing after the first break.

XAxis1.AxisBreak.SetAutoMajorDTSpacingAfterBreak(1, True)

 

Used by: AutoBreakAxis object