ISeries.asPie
ISeries

property asPie: IPieSeries;

Type Library
TeeChartx

Description
The asPie property is used by the Series Class to access specific Pie Series properties. See Typecasting for a detailed explanation of access to Series and Function specific properties.

Example [Visual Basic]:

With TChart1.Series( 0 )

.Add 10, "Slice 1", clTeeColor

.Add 4, "Slice 2", clTeeColor

.Add 7, "Slice 3", clTeeColor

.asPie.Circled = True

.asPie.Color3D = True

End With