Version

BreakSlice Method

Breaks or unbreaks an individual slice off from the center of the pie.
Syntax
'Declaration
 
Public Sub BreakSlice( _
   ByVal sliceNumber As Integer, _
   ByVal breakSlice As Boolean _
) 
public void BreakSlice( 
   int sliceNumber,
   bool breakSlice
)

Parameters

sliceNumber
The slice number from 0 to number of slices - 1.
breakSlice
Whether or not to break the slice.
Remarks

Developers should use either this method, or one of the breaking flags (see BreakAllSlices, BreakAlternatingSlices or BreakOthersSlice) to break slices from the Pie Chart. The effect of using multiple breakage methods is undefined.

The slice number can be thought of in correspondence to a data column representing the slice. Whereas additional data columns may appear before the column represented by the first slice, a slice number will always be zero-aligned. For example, if column indices 3, 4 and 5 are rendered in the pie chart, these columns correspond to slice numbers 0, 1, and 2, respectively.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also