LegendCellColumn 构造函数

定义

初始化 LegendCellColumn 类的新实例。

重载

LegendCellColumn()

初始化 LegendCellColumn 类的新实例。

LegendCellColumn(String, LegendCellColumnType, String)

使用指定的标题文本、列类型和列单元文本初始化 LegendCellColumn 类的新实例。

LegendCellColumn(String, LegendCellColumnType, String, ContentAlignment)

使用指定的标题文本、列类型、列单元文本和内容对齐方式初始化 LegendCellColumn 类的新实例。

LegendCellColumn()

初始化 LegendCellColumn 类的新实例。

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

适用于

LegendCellColumn(String, LegendCellColumnType, String)

使用指定的标题文本、列类型和列单元文本初始化 LegendCellColumn 类的新实例。

public:
 LegendCellColumn(System::String ^ headerText, System::Web::UI::DataVisualization::Charting::LegendCellColumnType columnType, System::String ^ text);
public LegendCellColumn (string headerText, System.Web.UI.DataVisualization.Charting.LegendCellColumnType columnType, string text);
new System.Web.UI.DataVisualization.Charting.LegendCellColumn : string * System.Web.UI.DataVisualization.Charting.LegendCellColumnType * string -> System.Web.UI.DataVisualization.Charting.LegendCellColumn
Public Sub New (headerText As String, columnType As LegendCellColumnType, text As String)

参数

headerText
String

图例单元列的标头文本。

columnType
LegendCellColumnType

一个 LegendCellColumnType 枚举值,指定用于定义图例单元内容的类型。

text
String

图例单元列的文本。

适用于

LegendCellColumn(String, LegendCellColumnType, String, ContentAlignment)

使用指定的标题文本、列类型、列单元文本和内容对齐方式初始化 LegendCellColumn 类的新实例。

public:
 LegendCellColumn(System::String ^ headerText, System::Web::UI::DataVisualization::Charting::LegendCellColumnType columnType, System::String ^ text, System::Drawing::ContentAlignment alignment);
public LegendCellColumn (string headerText, System.Web.UI.DataVisualization.Charting.LegendCellColumnType columnType, string text, System.Drawing.ContentAlignment alignment);
new System.Web.UI.DataVisualization.Charting.LegendCellColumn : string * System.Web.UI.DataVisualization.Charting.LegendCellColumnType * string * System.Drawing.ContentAlignment -> System.Web.UI.DataVisualization.Charting.LegendCellColumn
Public Sub New (headerText As String, columnType As LegendCellColumnType, text As String, alignment As ContentAlignment)

参数

headerText
String

图例单元列的标头文本。

columnType
LegendCellColumnType

一个 LegendCellColumnType 枚举值,指定用于定义图例单元内容的类型。

text
String

图例单元列的文本。

alignment
ContentAlignment

图例单元内容的对齐方式。

适用于