共用方式為


LegendItem 建構函式

定義

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

多載

LegendItem()

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

LegendItem(String, Color, String)

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

LegendItem()

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

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

備註

使用此建構函式來建立和初始化 類別的新實例 LegendItem

請注意,您也可以使用 AddCustomItems 物件的集合屬性 Legend 相關聯的 和 Insert 方法,新增自訂圖例專案。

適用於

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.Web.UI.DataVisualization.Charting.LegendItem : string * System.Drawing.Color * string -> System.Web.UI.DataVisualization.Charting.LegendItem
Public Sub New (name As String, color As Color, image As String)

參數

name
String

圖例項目的名稱。

color
Color

圖例項目的色彩。

image
String

要用於顯示圖例項目的影像的路徑。

備註

image只需要指定 或 color 參數。 如果同時指定這兩者,則 image 參數具有優先順序。

適用於