SetMinorDTSpacingAfterBreak
The SetMinorDTSpacingAfterBreak method sets the minor date/time tick spacing after the break pointed to by breakIndex in the break list.
Syntax
object.SetMinorDTSpacingAfterBreak ( breakIndex, spacing )
Parameter | Type | Description |
breakIndex | Integer | required, the position of the break in break list; the break list index starts at 1 |
spacing | Double | required, the new minor tick spacing value |
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 minor tick spacing to 5 after the first break.
XAxis1.AxisBreak.SetMinorDTSpacingAfterBreak(1, 5)
Used by: AutoBreakAxis object