dotnetCHARTING Send comments on this topic.
Visible Property
See Also 
dotnetCHARTING Namespace > Series Class : Visible Property



Gets or sets a value which indicates whether the series is visible.

Syntax

Visual Basic (Declaration) 
Public Property Visible As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Series
Dim value As Boolean
 
instance.Visible = value
 
value = instance.Visible
C# 
public bool Visible {get; set;}
C++/CLI 
public:
property bool Visible {
   bool get();
   void set (bool value);
}

Remarks

This property is only valid when set through Chart.Series.Visible. Setting this property on a lone Series object would have no effect.

See Also