public Color EndColor {get; set;}
Remarks
Default: White The EndColor property determines the last Range palette color. When UseColorRange property is True, Surface series creates a color palette using StartColor, MidColor and EndColor properties.
Example
This code changes the color range palette:
[C#]
Steema.TeeChart.Styles.Surface Series1 = new Steema.TeeChart.Styles.Surface();
tChart1.Series.Add(Series1);
Series1.UseColorRange = true;
Series1.StartColor = Color.White;
Series1.EndColor = Color.Yellow;
See Also
Custom3DPalette Class | Custom3DPalette Members | Steema.TeeChart.Styles Namespace