共用方式為


LegendItem 建構函式

定義

初始化 LegendItem 類別的新執行個體。

多載

LegendItem()

初始化 LegendItem 類別的新執行個體。

LegendItem(String, Color, String)

使用指定的名稱、色彩和影像路徑,初始化 LegendItem 類別的新執行個體。

LegendItem()

初始化 LegendItem 類別的新執行個體。

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

備註

您可以使用這個函式來建立和初始化類別的新實例 LegendItem

請注意,您也可以使用 Add Insert 與物件之 collection 屬性相關聯的和方法,來加入自訂圖例專案 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 參數,則參數具有優先順序。

適用於