public Color BackColor {get; set;}
Remarks
Sets / returns the color used to fill spaces when displaying text or filling with brushes with different style other than Solid. The Brush .Visible property must be set to true.
Example
[C#]
private void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
g.Brush.Visible = true;
g.Brush.Style = HatchStyle.DiagonalCross;
g.BackColor = Color.Yellow;
Rectangle r = new Rectangle(100,100,145,155);
g.Rectangle(r,10);
}
See Also
Graphics3D Class | Graphics3D Members | Steema.TeeChart.Drawing Namespace