TPieSeries
Hierarchy Properties Methods Events
Circular representation of values.

Unit
Series
Description
The Pie series outputs all points drawing slices forming a circle or ellipse.
To see a visual representation of this Series type, go to the TeeChart User Guide.
Set the TCustomChartElement.ParentChart property to the desired Chart component.
Use the TChartSeries.Add method to manually fill pie slices:
Series1.Clear;
Series1.Add( 123 );
Series1.Add( 456, 'Hello' );
Series1.Add( 789, 'abc', clGreen );
The TPieSeries.PiePen property determines the kind of pen used to draw the slice frames.
The Chart TCustomTeePanel.View3D and Chart TCustomAxisPanel.Chart3DPercent properties control the 3D pie size.
Set the TPieSeries.UsePatterns property to True to fill the pie slices using brush patterns.
The Shadow Color and TPieSeries.Dark3D properties apply a shadow effect on pie 3D region.
The TPieSeries.PieValues property can be used to access the pie values:
var tmp : Double;
tmp:=Series1.YValues[3]; // fourth slice value
Please refer to TCircledSeries ancestor description for all common Series properties like TChartSeries.Marks, Axis dependence, methods and events.