Title Constructors

Definition

Initializes a new instance of the Title class.

Overloads

Title()

Initializes a new instance of the Title class.

Title(String)

Initializes a new instance of the Title class with the specified title text.

Title(String, Docking)

Initializes a new instance of the Title class with the specified title text and docking value.

Title(String, Docking, Font, Color)

Initializes a new instance of the Title class with the specified title text, docking value, font and color.

Title()

Initializes a new instance of the Title class.

public:
 Title();
public Title ();
Public Sub New ()

Applies to

Title(String)

Initializes a new instance of the Title class with the specified title text.

public:
 Title(System::String ^ text);
public Title (string text);
new System.Windows.Forms.DataVisualization.Charting.Title : string -> System.Windows.Forms.DataVisualization.Charting.Title
Public Sub New (text As String)

Parameters

text
String

The text for the title.

Applies to

Title(String, Docking)

Initializes a new instance of the Title class with the specified title text and docking value.

public:
 Title(System::String ^ text, System::Windows::Forms::DataVisualization::Charting::Docking docking);
public Title (string text, System.Windows.Forms.DataVisualization.Charting.Docking docking);
new System.Windows.Forms.DataVisualization.Charting.Title : string * System.Windows.Forms.DataVisualization.Charting.Docking -> System.Windows.Forms.DataVisualization.Charting.Title
Public Sub New (text As String, docking As Docking)

Parameters

text
String

The text for the title.

docking
Docking

A Docking enumeration value that determines where the title will be docked on the chart.

Applies to

Title(String, Docking, Font, Color)

Initializes a new instance of the Title class with the specified title text, docking value, font and color.

public:
 Title(System::String ^ text, System::Windows::Forms::DataVisualization::Charting::Docking docking, System::Drawing::Font ^ font, System::Drawing::Color color);
public Title (string text, System.Windows.Forms.DataVisualization.Charting.Docking docking, System.Drawing.Font font, System.Drawing.Color color);
new System.Windows.Forms.DataVisualization.Charting.Title : string * System.Windows.Forms.DataVisualization.Charting.Docking * System.Drawing.Font * System.Drawing.Color -> System.Windows.Forms.DataVisualization.Charting.Title
Public Sub New (text As String, docking As Docking, font As Font, color As Color)

Parameters

text
String

The text for the title.

docking
Docking

A Docking enumeration value that determines where the title will be docked on the chart.

font
Font

The title font.

color
Color

The title color.

Applies to