SetAutoMinorTickDivisionAfterBreak Method
The SetAutoMinorTickDivisionAfterBreak method sets the state of using the default minor tick division 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 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 tick division after the first break.
XAxis1.AxisBreak.SetAutoMinorTickDivisionAfterBreak(1, True)
Used by: AutoBreakAxis object