SetAutoTickSpacingAfterBreak Method

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

Syntax

object.SetAutoTickSpacingAfterBreak ( 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 the major tick spacing, 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 not use the default major tick spacing after the second break.

XAxis1.AxisBreak.SetAutoTickSpacingAfterBreak(2, False)

 

Used by: AutoBreakAxis object