共用方式為


DataPointCollection.AddXY 方法

定義

使用指定的 X 值與 Y 值,將 DataPoint 物件加入至集合的結尾。

多載

AddXY(Double, Double)

DataPoint 物件加入至集合的結尾,並且使用指定的 X 值與 Y 值。

AddXY(Object, Object[])

使用指定的 X 值與 Y 值,將 DataPoint 物件加入至集合的結尾。

AddXY(Double, Double)

DataPoint 物件加入至集合的結尾,並且使用指定的 X 值與 Y 值。

public:
 int AddXY(double xValue, double yValue);
public int AddXY (double xValue, double yValue);
member this.AddXY : double * double -> int
Public Function AddXY (xValue As Double, yValue As Double) As Integer

參數

xValue
Double

資料點的 X 值。

yValue
Double

資料點的 Y 值。

傳回

表示以零起始之索引的 integer,此索引是項目在資料點集合中的插入位置。

備註

這個方法會將 物件加入 DataPointDataPointCollection ;物件一律會加入至集合的結尾。

如果您的資料點需要多個 Y 值, AddXY 請使用 方法多載。

如果您的資料點不需要 X 值,也就是說,如果您要建立非散佈圖,請改用 AddY 方法。

適用於

AddXY(Object, Object[])

使用指定的 X 值與 Y 值,將 DataPoint 物件加入至集合的結尾。

public:
 int AddXY(System::Object ^ xValue, ... cli::array <System::Object ^> ^ yValue);
public int AddXY (object xValue, params object[] yValue);
member this.AddXY : obj * obj[] -> int
Public Function AddXY (xValue As Object, ParamArray yValue As Object()) As Integer

參數

xValue
Object

資料點的 X 值。

yValue
Object[]

一個或多個以逗號分隔值,表示資料點的 Y 值。

傳回

integer 值,表示以零起始的索引位置,也就是項目在集合中的插入位置。

備註

這個方法會將一個 DataPoint 物件加入至 DataPointCollection ;資料點一律會加入至集合的結尾。

您必須至少提供一個 (1) Y 值,否則會擲回例外狀況。 這個方法也會檢查 YValueType 這個資料所屬物件的 屬性 DataPointCollection ;如果指定太多 Y 值,則會擲回例外狀況。

若要讓 DateTime 格式設定有效果,值必須是 DateTime 物件。

如果您的資料點不需要 X 值,也就是說,如果您要建立非散佈圖,請改用 AddY 方法

適用於