DataPoint.XValue 属性

定义

获取或设置数据点的 X 值。

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

属性值

Double

一个 double,它表示数据点的 X 值。

属性

注解

所有图表类型都可以显示为散点图或非散点图,因为可以设置 X 值和 Y 值。 设置 X 值将导致散点图,而不设置此属性(相当于将其设置为零)将导致非散点图。 例如,若要绘制点图表类型,请添加具有 X 值零的数据点。 若要显示传统的散点图,请添加除零以外的 X 值的数据点。

不需要设置数据点的 X 值。 如果未设置数据点,则使用数据点的索引值按 DataPointCollection顺序绘制。

适用于