LegendItem 构造函数

定义

初始化 LegendItem 类的新实例。

重载

LegendItem()

初始化 LegendItem 类的新实例。

LegendItem(String, Color, String)

使用指定的名称、颜色和图像路径初始化 LegendItem 类的新实例。

LegendItem()

初始化 LegendItem 类的新实例。

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

注解

使用此构造函数创建和初始化 类的新 LegendItem 实例。

请注意,还可使用与 对象的集合属性关联的 和 方法来 Add Insert CustomItems 添加自定义图例 Legend 项。

适用于

LegendItem(String, Color, String)

使用指定的名称、颜色和图像路径初始化 LegendItem 类的新实例。

public:
 LegendItem(System::String ^ name, System::Drawing::Color color, System::String ^ image);
public LegendItem (string name, System.Drawing.Color color, string image);
new System.Windows.Forms.DataVisualization.Charting.LegendItem : string * System.Drawing.Color * string -> System.Windows.Forms.DataVisualization.Charting.LegendItem
Public Sub New (name As String, color As Color, image As String)

参数

name
String

图例项的名称。

color
Color

图例项的颜色。

image
String

显示图例项的图像的路径。

注解

只需 image 指定 color 或 参数。 如果同时指定了两者, image 则参数具有优先级。

适用于