Overload List
public abstract Void PyramidTrunc(System.Drawing.Rectangle, System.Int32, System.Int32, System.Int32, System.Int32)
Draws a pyramid with a truncated apex of variable thickness.
public abstract Void PyramidTrunc(System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32, System.Int32)
Remarks
Draws a pyramid with a truncated apex of variable thickness.
Example
[C#]
private void tChart1_AfterDraw_1(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
g.Pen.Color=Color.Yellow;
g.Pen.Width = 2;
Rectangle r = new Rectangle(50,50,300,200);
tChart1.Graphics3D.PyramidTrunc(r,10,15,20,15);
}
See Also
Graphics3D Class | Graphics3D Members | Steema.TeeChart.Drawing Namespace