dotnetCHARTING Send comments on this topic.
Background Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : Background Property



Gets or sets the Background of this chart.

Syntax

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

Example

C#Copy Code
Chart.Background = new Background(Color.Ivory); 
Visual BasicCopy Code
Chart.Background = new Background(Color.Ivory)

See Also