SetBreakTo Property

The SetBreakTo property sets the ending point of the break pointed to by breakIndex in the break list.

Syntax

object.SetBreakTo ( 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 ending 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 extend the third break to data value 45.

XAxis1.AxisBreak.SetBreakTo(3, 45)

 

Used by: AutoBreakAxis object