Overload List
public abstract Void LineTo(System.Int32, System.Int32)
Draws a line to Point with z depth offset.
public Void LineTo(System.Drawing.Point, System.Int32)
Draws line from present position to end co-ordinates with z depth offset.
public abstract Void LineTo(System.Int32, System.Int32, System.Int32)
Draws a Line to 3D Point.
public abstract Void LineTo(Steema.TeeChart.Drawing.Point3D)
Remarks
Will draw a line from the present PenPos (see MoveTo.) to the new co-ordinates. The Line method has 4 overloads to facilitate the setting of the end co-ordinate using Point p or int x, int y, both with or without a z parameter.
Example
[C#]
// Draws a line with no z offset;
tChart1.Graphics3D.MoveTo(150,180);
tChart1.Graphics3D.LineTo(250, 250);
See Also
Graphics3D Class | Graphics3D Members | Steema.TeeChart.Drawing Namespace