public override Void Paint(Graphics3D g,
Rectangle rect)
Remarks
Use this method to paint a bottom wall at rectangle r.
Example
[C#]
private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
Rectangle r = new Rectangle(50,50,100,100);
tChart1.Walls.Back.Paint(g,r);
tChart1.Walls.Bottom.Paint(g,r);
tChart1.Walls.Left.Paint(g,r);
tChart1.Walls.Right.Paint(g,r);
}
See Also
BottomWall Class | BottomWall Members | Steema.TeeChart Namespace