GetBreakPosition Method
The GetBreakPosition method returns the percentage of the position (e.g. the location of the break on the full length of the axis) of the break pointed to by breakIndex in the break list. Returns a Double.
Syntax
object.GetBreakPosition( breakIndex )
Parameter | Type | Description |
breakIndex | Integer | required, the position of the break in break list; the break list index starts at 1 |
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 return the percentage of the position of the second break in the break list.
Debug.Print XAxis1.AxisBreak.GetBreakPosition(2)
Used by: AutoBreakAxis object