Overload List
public abstract Void Arrow(System.Boolean, System.Drawing.Point, System.Drawing.Point, System.Int32, System.Int32, System.Int32, System.Double)
Draws a line with an arrow head of ArrowWidth and ArrowHeight dimensions in pixels.
public abstract Void Arrow(System.Boolean, System.Drawing.Point, System.Drawing.Point, System.Int32, System.Int32, System.Int32)
Remarks
Draws a line with an arrow head of ArrowWidth and ArrowHeight dimensions in pixels.
Example
[C#]
private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
g.Pen.Color = Color.Green;
g.Brush.Visible = true;
g.Brush.Color=Color.Yellow;
Point p1 = new Point(40,60);
Point p2 = new Point (120,150);
g.Arrow(true,p1,p2,10,10,3);
}
See Also
Graphics3D Class | Graphics3D Members | Steema.TeeChart.Drawing Namespace