共用方式為


Series.YValueType 屬性

定義

取得或設定數列所儲存之資料點的 Y 值資料型別。

public:
 property System::Windows::Forms::DataVisualization::Charting::ChartValueType YValueType { System::Windows::Forms::DataVisualization::Charting::ChartValueType get(); void set(System::Windows::Forms::DataVisualization::Charting::ChartValueType value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.SeriesYValueTypeConverter))]
public System.Windows.Forms.DataVisualization.Charting.ChartValueType YValueType { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Windows.Forms.DataVisualization.Charting.SeriesYValueTypeConverter))>]
member this.YValueType : System.Windows.Forms.DataVisualization.Charting.ChartValueType with get, set
Public Property YValueType As ChartValueType

屬性值

ChartValueType 列舉值,決定數列儲存之 Y 值資料的類型。 預設值是 Auto

屬性

備註

屬性 YValueType 會決定數列所儲存的資料類型。 這個屬性的值通常會設定為 AutoDateTime

IntervalType 座標軸標籤、刻度標記和方格類別中找到的屬性會決定間隔類型。

這個屬性也可以用來判斷 Y 值所系結的資料類型。

雖然很少這麼做,但可以繪製日期運算式做為資料點的值。 如果您將這個屬性設定為 DateTime ,則 Y 值接著可以輸入為 DateTime 值,而不是 做為 Double 。 日期和時間值會以.NET Framework作為值儲存在 Double 內部。

適用於