Determines Brush used to fill the Canvas draw rectangle background.
public ChartBrush Brush {get; set;}

Remarks


The Brush property determines the kind of brush used to fill the Canvas draw rectangle  background. 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