Ratio between Colors, from 0 to 1.
public Single SigmaScale {get; set;}

Remarks


Default: 1F

By setting a value from OF to 1F, you can determine the intensity of the center color . A value of 1F will set the highest intensity possible.

Example


[C#]

tChart1.Panel.Brush.Gradient.EndColor = Color.LemonChiffon; 
tChart1.Panel.Brush.Gradient.GammaCorrection = true;
tChart1.Panel.Brush.Gradient.Sigma = true;
tChart1.Panel.Brush.Gradient.SigmaFocus = 0.741F;
tChart1.Panel.Brush.Gradient.SigmaScale = 0.8F;
tChart1.Panel.Brush.Gradient.StartColor = Color.CornflowerBlue;
tChart1.Panel.Brush.Gradient.Visible = true;

See Also

Gradient Class | Gradient Members | Steema.TeeChart.Drawing Namespace