SetMinorTickDivisionAfterBreak Property
The SetMinorTickDivisionAfterBreak property sets 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.
Syntax
object.SetBreakPosition ( 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 position (as a percentage) to set 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 set the percentage of the position of the third break at 60 percent of the length of the axis.
XAxis1.AxisBreak.SetBreakPosition(3, 60)
Used by: AutoBreakAxis object