How to plot lines in 3D (with XYZ axes ?)

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
rv
Newbie
Newbie
Posts: 6
Joined: Fri Mar 07, 2003 5:00 am
Location: France
Contact:

How to plot lines in 3D (with XYZ axes ?)

Post by rv » Tue Jan 25, 2005 9:55 am

Hi,

I need to plot lines in REAL 3D. My trend uses 3 axes (XYZ). I have 3 coordinates for each point.

Thanks for your help,

H. MAILLARD

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

Post by Marjan » Tue Jan 25, 2005 10:00 am

Hi.

You could try using the points3D series with visible connecting pen. Example:

Code: Select all

points3D1.LinePen.Color = Color.Red;
points3D1.LinePen.Width = 2;
// plotting y=f(x,z)
points3D1.Add(2,0,4); // f(2,4) =0
points3D1.Add(1,3,2); // f(1,2) = 3
points3D1.Add(0,2,3); // f(0,3) = 2
Marjan Slatinek,
http://www.steema.com

rv
Newbie
Newbie
Posts: 6
Joined: Fri Mar 07, 2003 5:00 am
Location: France
Contact:

It works fine...

Post by rv » Tue Jan 25, 2005 10:22 am

thanks for your help, that's what I wanted to do..

H. MAILLARD

Post Reply