TPoint3DSeries reading Zvalue ?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
tacq
Newbie
Newbie
Posts: 5
Joined: Fri Nov 15, 2002 12:00 am

TPoint3DSeries reading Zvalue ?

Post by tacq » Thu Dec 11, 2003 2:18 pm

How do I go about to get the stored Zvalue in a TPoint3DSeries when I know the indexnumber in the series? - X and Y have the Series.?Value(nr) but there is no for Z-axis?

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Thu Dec 11, 2003 4:55 pm

Hi.

If you know the index, then you could use the following code:

Code: Select all

var zval: double;
zval := point3DSeries.ZValues[Index];
Marjan Slatinek,
http://www.steema.com

Post Reply