Determines whether the gradient fill appears on screen.
public Boolean Visible {get; set;}

Remarks


Default: false

The Visible determines whether the gradient fill appears on screen.

Example
[C#]
This code creates a gradient fill:

using System.Drawing.Drawing2D; 

tChart1.Panel.Gradient.Visible = true;
tChart1.Panel.Gradient.Direction = LinearGradientMode.BackwardDiagonal;
tChart1.Panel.Gradient.StartColor = Color.Red;
tChart1.Panel.Gradient.MiddleColor =  Color.White;
tChart1.Panel.Gradient.EndColor = Color.Blue;


See Also

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