SetBreakFrom Property
The SetBreakFrom property sets the beginning point for the break pointed to by breakIndex in the break list.
Syntax
object.SetBreakFrom ( breakIndex, value )
Parameter | Type | Description |
breakIndex | Integer | required, the position of the break in break list; the break list index starts at 1 |
value | Double | required, the new beginning point for the break |
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 begin the third break at data value 15.
XAxis1.AxisBreak.SetBreakFrom(3, 15)
Used by: AutoBreakAxis object