IPieTool.Slice
IPieTool

property Slice: Integer;

Type Library
TeeChartx

Description
Returns the currently focused slice. (Point index)

Example [Visual Basic]:

Dim tmp

With TChart1.Tools.Items(0).asPie

tmp = .Slice

If tmp = -1 Then

Label1.Caption = ""

Else

Label1.Caption = TChart1.Series(0).PointLabel(tmp)

End If

End With