public Color StartColor {get; set;}
Remarks
Default: Navy
The StartColor property defines one of the three colors used to create the palette to fill the Surface polygons. The UseColorRange property should be true.
Example
This code will create a gradient color palette from Red to White:
[C#]
Steema.TeeChart.Styles.Surface Series1 = new Steema.TeeChart.Styles.Surface();
tChart1.Series.Add(Series1);
Series1.UseColorRange = true;
Series1.StartColor = Color.Red;
Series1.EndColor = Color.White;
See Also
Custom3DPalette Class | Custom3DPalette Members | Steema.TeeChart.Styles Namespace