DataPoint.YValues 属性

定义

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

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

属性值

Double[]

double 值的数组,这些值表示数据点的 Y 值。

属性

注解

YValues 属性用于设置数据点的 Y 值。

除气泡图、蜡烛条图和股票图表外,所有图表类型都需要每点 Y 值。 这些图表类型需要多个 Y 值,因为一个数据点由多个值组成。 例如,若要绘制一个股票图表柱,需要四个值:高、低、开盘和收盘值。

当用于检索 Y 值时,该 YValues 属性返回值数组 double

重要

YValuesPerPoint 属性确定所有数据点 Series 可以具有的最大 Y 值数。 如果指定超过允许的 Y 值数,将引发异常。

适用于