ICustom3DSeries.AddXYZ
ICustom3DSeries

function AddXYZ(AX, AY, AZ: Double; Const AXLabel: WideString; Value: OLE_COLOR): Integer;

Type Library
TeeChartx

Description
The AddXYZ method adds a new point to a 3D Series. Specific colors can be assigned to each Surface polygon by using the colour parameter.

Example [Visual Basic]:

This code creates a new Surface Series :

With TChart1.Series(0)

.Clear

For x= 1 to 20

For z = 1 to 30

.asSurface.AddXYZ x, Random(100), z, vbGreen

Next z

Next x