dotnetCHARTING Send comments on this topic.
Title Property
See Also  Example
dotnetCHARTING Namespace > ChartArea Class : Title Property



Gets or sets the ChartArea's title.

Equivalent to ChartArea.TitleBox.Label.Text.

Syntax

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

Example

C#Copy Code
ChartArea.Title = "Chart of Sales for 2003"; 
Visual BasicCopy Code
ChartArea.Title = "Chart of Sales for 2003"

See Also