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值。

适用于