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.Web.UI.DataVisualization.Charting.Title : string -> System.Web.UI.DataVisualization.Charting.Title
Public Sub New (text As String)

Parameters

text
String

A string that represents 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::Web::UI::DataVisualization::Charting::Docking docking);
public Title (string text, System.Web.UI.DataVisualization.Charting.Docking docking);
new System.Web.UI.DataVisualization.Charting.Title : string * System.Web.UI.DataVisualization.Charting.Docking -> System.Web.UI.DataVisualization.Charting.Title
Public Sub New (text As String, docking As Docking)

Parameters

text
String

A string that represents 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::Web::UI::DataVisualization::Charting::Docking docking, System::Drawing::Font ^ font, System::Drawing::Color color);
public Title (string text, System.Web.UI.DataVisualization.Charting.Docking docking, System.Drawing.Font font, System.Drawing.Color color);
new System.Web.UI.DataVisualization.Charting.Title : string * System.Web.UI.DataVisualization.Charting.Docking * System.Drawing.Font * System.Drawing.Color -> System.Web.UI.DataVisualization.Charting.Title
Public Sub New (text As String, docking As Docking, font As Font, color As Color)

Parameters

text
String

A string that represents 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 font used to draw the title.

color
Color

The color used to draw the title.

Applies to