public ChartBrush Brush {get; set;}
Remarks
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
This code changes the Surface brush:
[C#]
Steema.TeeChart.Styles.Surface Series1 = new Steema.TeeChart.Styles.Surface();
tChart1.Series.Add(Series1);
Series1.UsePalette = false;
Series1.UseColorRange = false;
Series1.Brush.Style = DiagCross;
See Also
Custom3DPalette Class | Custom3DPalette Members | Steema.TeeChart.Styles Namespace