ICustom3DSeries.Brush
ICustom3DSeries

property Brush: IBrush;

Type Library
TeeChartx

Description
The Brush property determines the kind of brush that will be used to draw the Surface polygons. It only works when UsePalette and UseColorRange properties are False.

Example [Visual Basic]:

This code changes the Surface brush:

With TChart1.Series( 0 ).asSurface

.UsePalette = False

.UseColorRange = False

.Brush.Style = bsDiagCross

End with